-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlesson5.html
105 lines (78 loc) · 2.67 KB
/
lesson5.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
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<Title>Forms
</Title></head>
<body>
<Form action="">
<Fieldset>
<legend>Personal Details</legend>
<input type="Text" placeholder="Your Name">
<br> <br>
<input type="Number" placeholder=" ID Number">
<br> <br>
<label for="email">Email</label>
<br>
<input type="Email" id="email" placeholder="Email">
<br> <br>
<input type="Password" placeholder=" Your Password">
<br>
<label for="">Your DOB</label>
<br>
<input type="date">
</Fieldset>
<br>
<fieldset>
<label for="Interests">Your Interests</label>
<input type="checkbox" name="" id="Interests">Football
<br>
<input type="checkbox">volleyball
<br>
<!-- this a is a radio button -->
<label for="gender"> Your gender</label>
<br>
<input type="radio" name="gender">Male
<br>
<input type="radio" name="gender">Female
<br>
<label for="">Your Photo</label>
<br>
<input type="file">
<br>
<label for="">Select Courses</label>
<br>
<!-- This is a drop down menu -->
<select name="" id="">
<option value="">first</option>
<option value="">second</option>
<option value="">third</option>
</select>
</fieldset>
<br><br>
<fieldset>
<label for="">Leave a comment</label>
<br>
<textarea name="" id="" cols="30" rows="5"></textarea>
</fieldset>
<br>
<input type="submit" value="Make Application">
<br>
<input type="reset" value="Reset">
<label for="">Dropdown</label>
<select name="" id="">
<optgroup>Undergraduate courses</optgroup>
<option value="">B.Comm</B></option>
<option value="">IT</option>
<optgroup>Postgraduate courses</optgroup>
<option value="">Msc PT</option>
</select>
</Form>
</body>
<a href="lesson1.html">Link</a>
<br> <br>
<p>
Lorem ipsum dolor sit amet consectetur<a href="https://youtube.com" >you</a>elit. Neque, ex et. Eius sequi iure aperiam quam, minima maiores est saepe ratione rerum consequatur adipisci expedita? Voluptatibus amet hic autem commodi.
</p>
</html>