-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththirdPage.html
More file actions
57 lines (57 loc) · 1.91 KB
/
thirdPage.html
File metadata and controls
57 lines (57 loc) · 1.91 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
<!DOCTYPE html>
<html>
<head>
<title>FormTutorial</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h2>Contact Form</h2>
<form>
<input type="text" placeholder="firstName" />
<br />
<br />
<input type="name" placeholder="lastName" />
<br />
<br />
<input type="date" />
<br />
<br />
<input type="radio" name="Gender" value="M">Male
<br />
<input type="radio" name="Gender" value="F">Female
<br />
<br />
<input type="email" placeholder="email" required />
<br />
<br />
<input type="password" placeholder="password" required />
<br />
<br />
<input type="checkbox" name="likes" value="table-tennis">Table-Tennis
<br />
<br />
<input type="checkbox" name="likes" value="lawn tennis">Lawn-Tennis
<br />
<br />
<input type="checkbox" name="likes" value="food">Good food
<br />
<br />
<input type="checkbox" name="likes" value="playing">Playing
<br />
<br />
<input type="checkbox" name="likes" value="movies">Movies
<br />
<br />
<input type="checkbox" name="likes" value="talking">Talking
<br />
<br />
<input type="checkbox" name="likes" value="football">football
<br />
<br />
<input type="checkbox" name="likes" value="competition">Competition
<br />
<br />
<input type="submit" value="Done" />
</form>
</body>
</html>