-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform1.html
More file actions
39 lines (39 loc) · 1.58 KB
/
form1.html
File metadata and controls
39 lines (39 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="Assets/css/formstyle.css">
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Registration form</title>
</head>
<body>
<div class="container">
<div class="form-box">
<h2>Register Here</h2>
<form action="">
<label for="fname">First Name</label>
<input type="text" id="fname" required placeholder="Enter your first name"><br><br>
<label for="lname">Last Name</label>
<input type="text" id="lname"><br><br>
</label for="email">Email</label>
<input type="email" id="mail" required placeholder="Enter your email"><br><br>
</label for="pno">Phone Number</label>
<input type="text" id="pno"><br><br>
</label for="gender">Male</label>
<input type="radio" id="male" name="gender">
</label for="gender">Female</label>
<input type="radio" id="fmale" name="gender">
</label for="gender">Other</label>
<input type="radio" id="other" name="gender"><br><br>
<label for="dbirth">Date of Birth</label>
<input type="date"><br><br>
<label for="pass">Password</label>
<input type="password" id="pass" required placeholder="Enter your password"><br><br>
<input type="submit" value="Register">
</form>
</div>
</div>
</body>
</html>