Saturday 24 July 2021

Bootstrap 5 with CSS Bootstrap Login Form Design

 Login Page Using Bootstrap 5 and CSS with Model Design

____________________________________





Example Here:


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Bootstrap 5 Login page with Icon</title>


<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto|Varela+Round">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"> 

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>

<style>
body {
font-family: 'Varela Round', sans-serif;
}
.modal-login {
color: #636363;
width: 350px;
}
.modal-login .modal-content {
padding: 20px;
border-radius: 5px;
border: none;
}
.modal-login .modal-header {
border-bottom: none;   
position: relative;
justify-content: center;
}
.modal-login h4 {
text-align: center;
font-size: 26px;
margin: 30px 0 -15px;
}
.modal-login .form-control:focus {
border-color: #70c5c0;
}
.modal-login .form-control, .modal-login .btn {
min-height: 40px;
border-radius: 3px; 
}
.modal-login .close {
position: absolute;
top: -5px;
right: -5px;
}
.modal-login .modal-footer {
background: #ddf002;
border-color: #dee4e7;
text-align: center;
justify-content: center;
margin: 0 -20px -20px;
border-radius: 5px;
font-size: 13px;
}
.modal-login .modal-footer a {
color: white;
}
.modal-login .avatar {
position: absolute;
margin: 0 auto;
left: 0;
right: 0;
top: -70px;
width: 95px;
height: 95px;
border-radius: 50%;
z-index: 9;
background: #60c7c1;
padding: 15px;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.modal-login .avatar img {
width: 100%;
}
.modal-login.modal-dialog {
margin-top: 80px;
}
.modal-login .btn, .modal-login .btn:active {
color: #fff;
border-radius: 4px;
background: #60c7c1 !important;
text-decoration: none;
transition: all 0.4s;
line-height: normal;
border: none;
}
.modal-login .btn:hover, .modal-login .btn:focus {
background: #45aba6 !important;
outline: none;
}
.trigger-btn {
display: inline-block;
margin: 100px auto;
}
</style>
</head>

<body>
<div class="text-center">
<!-- Button HTML (to Trigger Modal) -->
<a href="#myModal" class="trigger-btn" data-toggle="modal">Login Here</a>
</div>

<!-- Modal HTML -->
<div id="myModal" class="modal fade">
<div class="modal-dialog modal-login">
<div class="modal-content">
<div class="modal-header">
<div class="avatar">
<img src="Avatar.png" alt="Avatar">
</div>
<h4 class="modal-title">Member Login</h4>
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
</div>
<div class="modal-body">
<form action="/examples/actions/confirmation.php" method="post">
<div class="form-group">
<input type="text" class="form-control" name="username" placeholder="Username" required="required">
</div>
<div class="form-group">
<input type="password" class="form-control" name="password" placeholder="Password" required="required">
</div>        
<div class="form-group">
<button type="submit" class="btn btn-success btn-lg btn-block login-btn">Login</button>
</div>
</form>
</div>
<div class="modal-footer">
<a href="#">Forgot Password?</a>
</div>
</div>
</div>
</div>  
</body>
</html>



Wednesday 14 July 2021

How to Create CSS Counter

 CSS COUNTER CREATION STEP BY STEP

EXAMPLE : 

<style>

body {

  counter-reset: section;

  background-color: DodgerBlue;

}

h2{

border:1px solid red;

background-color: tomato;

padding: 15px;

box-shadow: 1px 1px 1px 1px;


}

h2:hover{

background-color: black;

color: white;

}



h2::before {

  counter-increment: section;

  content: " " counter(section) " ";

  color: white;

  border-radius: 50%;

  border-color: black;

  border-style: solid;

  padding-left:08px;

  text-align: center;

  background-color: DodgerBlue;

}

</style>



<h2> Web Design Tutorial</h2>

<h2> HTML Tutorial</h2>

<h2> CSS Tutorial</h2>

<h2> JavaScript Tutorial</h2>

<h2> Bootstrap Tutorial</h2>

<h2> Lean All Programming and Scripting Languages with Youtube.com/avadhtutor</h2>

<h2>Please Like Share and Subscribe Our Channel </h2>





learn all Programming with youtube.com/avadhtutor


Friday 9 July 2021

Linear Gradient Using CSS

 CSS Linear Gradient Example Step by Step

Just copy and past below code and run your Program


All Linear Gradient Example Listed Here:

<!-- <body style="background:linear-gradient(red,blue,yellow)"> -->


 <body style="background:linear-gradient(to top left, red,blue,yellow)"> 


<input type=submit value=" Create Account  " style="width:230px; padding:15px; background:linear-gradient(to bottom left, green, tomato, white,black,blue)">


<h1 style="background:linear-gradient(green 30%, red 30%, yellow 40% ); height:200px;">Welcome to CSS3 Gradient</h1>


<input type=submit style="background: linear-gradient(orange 30%, blue 10%, tomato 50%, black ); 

 height:180px; width:250px; color:white; font-size:25px; border-radius:10px;">



Learn all Programming and Scripting languages with youtube.com/avadhtutor

 

How to Create Multi Color Background Using CSS

 How to Create Multi Color Background Using CSS


Example just Copy and past code to Your Editor and View Multi Color background Output Using CSS 


<!-- HTML <body bgcolor=yellow> -->

<!-- CSS  <body style="background:red;"> -->

<!--<body style="background:linear-gradient(red,yellow);"> -->

 <body style="background:linear-gradient(orange,black,blue, yellow)"> 

<h1 style="background:linear-gradient(white, blue)">welcome</h1>

<button style="background:linear-gradient(red, orange,yellow); width:200px; padding:10px;">Click me</button><br>

<input type=text style="background:linear-gradient(pink,yellow,green); width:250px; padding:10px;">

Learn all Programming Languages with youtube.com/avadhtutor




Padding In CSS

 How to use Padding in CSS

Padding is the space between its content and its border Area.

Example1: 
<p style="padding-left:20px;">welcome</p>


Example2:
<p style="background-color:yellow; padding:50px;"> Padding Attribute for hello this is a testing Hello hi this is simple text abcd aa</p>


Example 3:
<p style="padding-right:40px;">hello welcome this is a Padding Attribute for CSS this attribute make space inside a Elements</p>


Example 4:
<p style="padding-top:40px; background-color:blue; ">hello welcome this is a Padding Attribute for CSS this attribute make space inside a Elements</p>


Example 5:
<p style="padding-bottom:40px; background-color:orange; ">hello welcome this is a Padding Attribute for CSS this attribute make space inside a Elements</p>


Example 6: 
<p style="padding-bottom:30px; padding-left:40px; padding-right:50px; padding-top:30px;  background-color:pink; ">hello welcome this is a Padding Attribute for CSS this attribute make space inside a Elements</p>


Learn all Programming and Scripting Languages with youtube.com/avadhtutor

Margin Using CSS

 How to use and Apply Margin in CSS


with avadh tutor margin property or attribute define as the space of just about an HTML tag. The margin specifies a property elements for setting the margin properties attributes in one statement. The margin-bottom specifies the bottom margin of an element (tag). The margin-top specify the top margin of an element (tag).


Examples: 

<!-- Margin is Apply inside a body tag cover all over page

padding is apply inside a element (tag)

-->

<!-- <body style="margin:60px;"> -->

<body style="margin-left:30px; margin-top:100px; margin-right:50px; margin-bottom:60px;">

<p style="text-align:justify;" >Avadh  Tutor is Information Technology Based channel that provide information like Html tutorial, Html5 tutorial, CSS tutorial, step by step CSS3 ,how to create website using Bootstrap, Javascript, JQuery, Angular Js, website development using  PHP, step by step php mysqli, ASP.NET tutorial, C#.NET tutorial, WordPress tutorial with theme plugins widgets how to create your own theme , theme development using wordpress, how to create ecommerce online shopping website using magento, magento 2.x tutorial,  UI  UX, Website Designing and Website Development, software development, learn bootstrap, how to create responsive website using wordpress, how to create software using c#.net  and so on with avadh tutor

<br><br>

Avadh  Tutor is Information Technology Based channel that provide information like Html tutorial, Html5 tutorial, CSS tutorial, step by step CSS3 ,how to create website using Bootstrap, Javascript, JQuery, Angular Js, website development using  PHP, step by step php mysqli, ASP.NET tutorial, C#.NET tutorial, WordPress tutorial with theme plugins widgets how to create your own theme , theme development using wordpress, how to create ecommerce online shopping website using magento, magento 2.x tutorial,  UI  UX, Website Designing and Website Development, software development, learn bootstrap, how to create responsive website using wordpress, how to create software using c#.net  and so on with avadh tutor

</p>