-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
68 lines (66 loc) · 3.08 KB
/
forms.html
File metadata and controls
68 lines (66 loc) · 3.08 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
58
59
60
61
62
63
64
65
66
67
68
</html>
<!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>
<fieldset>
<legend style="color: blue; text-align: center;">
<em><big><b>Registratiom form for NDA</b></big></em>
</legend>
<div style="text-align: center; ">
<br>
<br>
<h2 style="color: rgb(7, 7, 7);"><big>Tech Scholarship Form</big></h2>
<br>
<label for="firstname"><b>First Name:</b> </label><br>
<input type="text" name="Firstname" id="firstname" placeholder="Enter your Name"><br><br>
<label for="surname"><b>Surname:</b></label><br>
<input type="text" name="Surname" id="surname" placeholder="Enter your Surname"><br><br>
<label for="pwd"><b>Password:</b></label><br>
<input type="password" name="Password" id="pwd"><br><br>
<label for="dob"><b>Date Of Birth:</b></label><br>
<input type="date" id="dob"><br><br>
<label for="gender"><b>Gender:</b></label><br>
<input type="radio" id="gender" name="Gender"> <big>Male</big><br>
<input type="radio" name="Gender" id="gender"> <big>Female</big><br>
<input type="radio" name="Gender" id="gender"> <big>I prefer not to say</big><br><br>
<label for="skill"><b>What are your Current Skills:</b></label><br>
<small><mark>Leave blank if you have no skill</mark></small><br>
<input type="checkbox" id="skill" name="skill" > <big>Data Analysis</big><br>
<input type="checkbox" name="skill" id="skill"><big>Website Development</big><br>
<input type="checkbox" name="skill" id="skill"> <big>Cloud Computing</big><br>
<input type="checkbox" name="skill" id="skill"> <big>Network Management</big><br>
<input type="checkbox" name="skill" id="skill"> <big>Graphic Design</big><br>
<input type="checkbox" name="skill" id="skill"> <big>I dont have a skill</big><br><br>
<label for="country"><b>Your Country:</b></label><br>
<select name="country" id="country">
<option value="1">Nigeria</option>
<option value="2">Ghana</option>
<option value="3">Chad</option>
<option value="4">Gambia</option>
<option value="5">South Africa</option>
</select><br><br>
<input type="submit" value="Send" style="background-color: blueviolet;"><br><br>
<audio controls >
<source src="Lonely at the top.mp3" type="audio/ogg">
</audio><br><br>
<h2 style="color: darkred;">Viewers discretion is advised</h2>
<video controls style="width: 300px; height: 300px;">
<source src="Ex-Convict.mp4" type="video/mp4">
Your video cannot be played
</video>
</div>
</fieldset>
</fieldset>
</form>
<h2>HTML iframe</h2>
<p>You can use the height and width to specify the size of the iframe</p><br>
<iframe src="Schedule.html" frameborder="5" width="500px" height="400px"></iframe>
</body>
</html>