-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha.html
More file actions
58 lines (55 loc) · 1.64 KB
/
Copy patha.html
File metadata and controls
58 lines (55 loc) · 1.64 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>registration form</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
</body>
<div class="main">
<h2>register here</h2>
<form id="register" method="post">
<lable>first name : </lable>
<br>
<input type="text" name="fname" id="name" placeholder="enter your first name">
<br><br>
<lable>last name:</lable>
<br>
<input type="text" name="lname" id="name" placeholder="enter your last name">
<br><br>
<lable> your age:</lable>
<br>
<input type="number" name="age" id="name" placeholder="how old are you?">
<br><br>
<lable>email:</lable>
<br>
<input type="email" name="email" id="name" placeholder="enter your valid email">
<br><br>
<lable>gender:</lable>
<br>
<input type="radio" name="gender" id="male">
<span id="male">male</span>
<input type="radio" name="gender" id="female">
<span id="female">female</span>
<br><br>
<lable>known language:</lable>
<br>
<input type="checkbox" name="lang" id="hindi">
<span id="hindi">hindi</span>
<input type="checkbox" name="lang" id="eng">
<span id="eng">english</span>
<br><br>
<input type="submit" value="submit" name="submit" id="submit">
</div><!--end reg-->
</div><!--end main-->
</body>
</html>