html registration form । css registration form । php registration form ।

 

আমরা এখন দেখব কিভাবে একটি রেজিস্টেশন ফর্ম তৈরী করতে হয় ,এবং সেখানে name, password, gender, phone, email অপশন দেওয়া । নিচে একটি উদাহরণ দেওয়া আছে ।
পুরা পোস্টটি সম্পূর্ণ পড়ার অনুরোধ রইল তা না হলে কোথাও কোনো সমস্যা হলে তা বুঝতে পারবে না । Html all tag click hear
উদাহরণ কোর্ড -

<!DOCTYPE html>
<html lang="en">
<head>
<meta content='width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1' name='viewport'/>  <meta charset="utf-8">
<title>Registration Form</title>
<style>
h2{
color:#F3F1F1;
}
form{
width: 310px;
height: 390px;
background-color:#171D9A;
margin:0 auto;
margin-top: 40px;
padding-top: 10px;
padding-left: 2px;
border-radius: 10px;
}
input[type="text"]{
margin-bottom: 10px;
border: solid 1px #999;
box-sizing: border-box;
padding:12px 8px;
width:200px;
}
input[type="password"]{
margin-bottom: 10px;
border: solid 1px #999;
box-sizing: border-box;
padding:12px 8px;
width:200px;
}
input[type="number"]{
margin-bottom: 10px;
border: solid 1px #999;
box-sizing: border-box;
padding:12px 8px;
width:200px;
}
input[type="email"]{
margin-bottom: 10px;
border: solid 1px #999;
box-sizing: border-box;
padding:12px 8px;
width:200px;
}
input[type=submit]{
background-color: #EACC16;
border:1px solid #365899;
color: white;
font-size: 14px;
height: 35px;
width:200px;
padding: 0 19px
}
input[type=submit]:hover{
background-color: #465e91;
}
</style>
</head>
<body>
<form action="" method="POST">
<center>
<h2>Registration Form</h2>
<!--Name-->
<input type="text" required name="name" placeholder="Name">
<br>
<!--password-->
<input type="password" required name="password" placeholder="password">
<br>
<!--gender-->
<font color="#EACC16">
<b>
Gender :
<input type="radio" name="gender">Male
<input type="radio" name="gender">Feale
</b>
</font>
<br><br>
<!--email-->
<input type="email" required name="email" placeholder="Email">
<br>
<!--phone number-->
<input type="number" required name="phone" placeholder="phone number">
<br>
<!--login button-->
<input type="submit" name="signup" value="Sign Up">
</center>
</form>
</body>
</html>

কোর্ড বিশ্লেষণ:-

১.<form action=" " method="POST"> আমি কিন্তু এখানে কোনো action ফাইল দেই নি ,form টি submit করার পর কোনো ফাইলে redirected হবে না । তা সবাই form action=" " দিবেযেমন action="submit.html"
২.h2 দিয়ে header title দেওয়া হয়েছে ।
৩.input দিয়ে input বাটন তৈরি করা হয়েছে ।

Log in form html code । লগইন ফর্ম html কোর্ড এখানে ।

Post a Comment

1 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.