-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiv_tag.html
60 lines (60 loc) · 2.89 KB
/
div_tag.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Form 1</title>
</head>
<body>
<table>
<tr> <tr>
<th>Visitors Information</th>
</tr></tr>
<tr>
<tr> <td>
<form align="center">
<label for="email">Email Address : </label>
<input type="email" name="email" id="email" /> <br />
<label>User's interest web:</label><br />
<label>research<input type="checkbox" name="interest" value="research" /></label>
<label>purchase <input type="checkbox" name="interest" value="purchase" /></label> <br />
<br />
<label for="occupation"> occupation : </label>
<select name="occupation" value="select-one" id="occupation">
<option>select one</option> </select></br>
<label>Want us to send you junk mails?</label></br>
<label>absolutely<input type="radio" name="send-mail" value="yes" /></label>
<label>no way man<input type="radio" name="send-mail" value="no" /></label>
<hr />
<input type="submit" value="Submit" />
<input type="reset" value="Reset" />
</form>
</td></tr>
</tr>
</table>
</div>
</br></br></br></br>
<div>
<h2>Register Here!!</h2>
<form>
<label>Username <input type="text" name="uname" required autofocus /></label><br />
<label>Password <input type="password" name="pwd" required /></label><br />
<label>Confirm Password<input type="password" name="pwdc" required /></label><br />
<label>Name <input type="text" name="name" required /></label><br />
<label>Gender</label><br />
<label>Male <input type="radio" name="gender" value="M" /></label>
<label>Female <input type="radio" name="gender" value="F" /></label>
<label>Prefer Not to Say <input type="radio" name="gender" value="PNS" /></label><br />
<label>Address<br /><textarea name="address"></textarea></label><br />
<label>Profession
<select name="profession">
<option value="creater">Creater</option>
<option value="student">Student</option>
<option value="explorer">Explorer</option>
<option value="professional">Professional</option>
</select>
</label>
<input type="submit" />
</form>
</body>
</html>