-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSS_task7.html
75 lines (75 loc) · 2.41 KB
/
CSS_task7.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="task7.css" />
<title>Task 7</title>
</head>
<body>
<div class="container">
<form>
<div class="form-group">
<label for="name">Name: </label>
<input type="text" id="name" name="name" placeholder="your name" />
</div>
<div class="form-group">
<label for="email">Email: </label>
<input
type="email"
id="email"
name="email"
placeholder="your email"
/>
</div>
<div class="form-group">
<label for="pass">Password: </label>
<input type="password" id="pass" name="pass" />
</div>
<div class="form-group">
<label for="phone">Phone Number: </label>
<input type="number" id="phone" name="phone" />
</div>
<div class="form-group">
<label for="gender">Gender: </label>Male
<input type="radio" id="male" name="gender" value="Male" /><label
for="male"
></label>
Female
<input type="radio" id="female" name="gender" value="Female" /><label
for="female"
></label>
Other
<input type="radio" id="other" name="gender" value="Other" /><label
for="other"
></label>
</div>
<div class="form-group">
<label for="language">Language: </label>
<select id="language" name="language">
<option value="">-Select language-</option>
<option value="hindi">Hindi</option>
<option value="english">English</option>
<option value="tamil">Tamil</option>
</select>
</div>
<div class="form-group">
<label for="zip">Zip Code: </label>
<input type="text" id="zip" name="zip" />
</div>
<div class="form-group">
<label for="about">About: </label>
<textarea
id="about"
name="about"
cols="25"
rows="1"
placeholder="Write about yourself..."
></textarea>
</div>
<br />
<input type="submit" value="register" />
</form>
</div>
</body>
</html>