-
Notifications
You must be signed in to change notification settings - Fork 0
/
css_task7.html
103 lines (102 loc) · 4.66 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<title>Registration Form</title>
<link rel="stylesheet" type="text/css" href="css_task7style.css" />
</head>
<body>
<main>
<div class="container">
<form action="#" method="post">
<div class="table">
<div class="table-row">
<div class="table-cell">
<label for="Name">Name:</label>
</div>
<div class="table-cell">
<input type="text" id="Name" name="Name" placeholder="your name">
</div>
</div>
<div class="table-row">
<div class="table-cell">
<label for="email">Email:</label>
</div>
<div class="table-cell">
<input type="email" id="email" name="email" placeholder="your email">
</div>
</div>
<div class="table-row">
<div class="table-cell">
<label for="password">Password:</label>
</div>
<div class="table-cell">
<input type="password" id="password" name="password">
</div>
</div>
<div class="table-row">
<div class="table-cell">
<label for="phoneNumber">Phone Number:</label>
</div>
<div class="table-cell">
<input type="text" id="phoneNumber" name="phoneNumber">
</div>
</div>
<div class="table-row">
<div class="table-cell">
<label>Gender:</label>
</div>
<div class="table-cell">
<input type="radio" id="male" name="gender" value="Male">
<label for="male">Male</label>
<input type="radio" id="female" name="gender" value="Female">
<label for="female">Female</label>
<input type="radio" id="Other" name="gender" value="Other">
<label for="Other">Other</label>
</div>
</div>
<div class="table-row">
<div class="table-cell">
<label for="lang">Language:</label>
</div>
<div class="table-cell">
<select id="lang" name="lang">
<option value="Choose">Select language</option>
<option value="english">English</option>
<option value="hindi">Hindi</option>
<option value="telugu">Telugu</option>
<option value="bengali">Bengali</option>
</select>
</div>
</div>
<div class="table-row">
<div class="table-cell">
<label for="age">Age:</label>
</div>
<div class="table-cell">
<input type="text" id="age" name="age">
</div>
</div>
<div class="table-row">
<div class="table-cell">
<label for="zip">Zip Code: </label>
</div>
<div class="table-cell">
<input type="text" id="zip" name="zip">
</div>
</div>
<div class="table-row">
<div class="table-cell">
<label for="about">About:</label>
</div>
<div class="table-cell">
<textarea type="text" id="about" name="about">Write about yourself...</textarea>
</div>
</div>
</div>
<div class="btn-container">
<input type="submit" class="btn-register" value="Register">
</div>
</form>
</main>
</body>
</html>