-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest2.html
More file actions
68 lines (51 loc) · 1.81 KB
/
test2.html
File metadata and controls
68 lines (51 loc) · 1.81 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
59
60
61
62
63
64
65
66
67
68
<!doctype html>
<html lang="en">
<head>
<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>Document</title>
<link rel="stylesheet" href="test2.css">
</head>
<body>
<form action="">
<label for="name">Name :</label>
<input type="text" id="name" placeholder="your name" required="required">
<br><br>
<label for="email">Email :</label>
<input type="email" id="email" placeholder="your email" required="required">
<br><br>
<label for="password">Password :</label>
<input type="password" id="password" required="required">
<br><br>
<label for="pno">Phone Number :</label>
<input type="number" id="pno" required="required">
<br><br>
<p>Gender</p>
<label for="male">Male</label>
<input type="radio" id="male">
<label for="female">Female</label>
<input type="radio" id="female">
<label for="others">Others</label>
<input type="radio" id="others">
<br><br>
<label for="language">Language :</label>
<select name="" id="language">
<option value="select" disabled="disabled">---select language</option>
<option value="swahili">Swahili</option>
<option value="english">English</option>
<option value="french">French</option>
<option value="greek">Greek</option>
</select>
<br><br>
<label for="zcode">Zip Code :</label>
<input type="text" id="zcode" required="required">
<br><br><br><br>
<label for="person">About :</label>
<textarea name="" placeholder=" Write about yourself..." id="person" cols="30" rows="2"></textarea>
<br><br>
<button type="submit">Register</button>
</form>
</body>
</html>