-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (38 loc) · 1.63 KB
/
index.html
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
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<!--head start-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>form</title>
<!--css links-->
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/x-icon" href="images/favicon2.jpg">
</head>
<!--head end-->
<!--body start-->
<body>
<div class="wrapper">
<form action="#" method="get" enctype="multipaart/form-data">
<h1>Kindly Fill Up The Form</h1><br>
<label for="first_name">First Name:</label><br>
<input type="text" placeholder="Type your first name" name="first_name" id="first_name" class="first_name">
<br><br>
<label for="last_name">Last Name:</label><br>
<input type="text" placeholder="Type your last name" name="last_name" id="last_name" class="last_name">
<br><br>
<label for="email">Email Adress:</label><br>
<input type="email" placeholder="Type your email adress" name="email" id="email" class="email">
<br><br>
<label for="password">Password:</label><br>
<input type="password" placeholder="Type your password" name="password" id="password" class="password">
<br><br>
<label for="gender">Gender</label>
<input type="radio" value="male" name="gender" id="" class=""><span>Male</span>
<input type="radio" value="female" name="gender" id="" class=""><span>Female</span>
<button>Submit</button>
</form>
</div>
</body>
<!--body end-->
</html>