-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
58 lines (58 loc) · 2.62 KB
/
forms.html
File metadata and controls
58 lines (58 loc) · 2.62 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forms</title>
<link rel="stylesheet" href="web.css">}
</head>
<marquee>GOD'S WILL TECHNOLOGY: Building it for you</marquee>
<form>
<label for="name">First name</label><br><br>
<input type="text" placeholder="First name" required/> <br><br>
<label for="name">Last name</label><br><br>
<input type="text" placeholder="Last name" required/><br><br>
<input type="number" placeholder="Tel Number" required><br><br>
<input type="password" placeholder="Password"><br></br>
<input type="email" placeholder="E-mail" required><br></br>
<label for="Send Message">Send Message</label><br></br>
<textarea></textarea><br></br>
<h2>Gender</h2>
<input type="radio" name="g" value="male"/>Male<br></br>
<input type="radio" name="g" value="female">Female<br></br>
<input type="checkbox" name="g" value="male"/>Male<br></br>
<input type="checkbox" name="g" value="Female"/>Female<br></br>
<h1>Games</h1>
<input type="checkbox" name="g" value="Volleyball"/>Volleyball<br></br>
<input type="checkbox" name="g" value="Football"/>Football<br></br>
<input type="checkbox" name="g" value="Soccer"/>Soccer<br></br>
<input type="checkbox" name="g" value="Basketball"/>Basketball<br></br>
<input type="checkbox" name="g" value="Tennis"/>Tennis<br></br>
<input type="checkbox" name="g" value="Rugby"/>Rugby<br></br>
<h3>Highest Education Level</h3>
<input type="radio" name="g" value="Primary"/>Primary<br></br>
<input type="radio" name="g" value="Secondary"/>Secondary<br></br>
<input type="radio" name="g" value="College"/>College<br></br>
<input type="radio" name="g" value="University"/>University<br></br>
<h4>Clarification/ Proof </h4>
<input type="file"><br></br>
<h3>Nationality</h3>
<select>
<option value="None">None</option>
<option value="Kenya">Kenya</option>
<option value="Uganda">Uganda</option>
<option value="Tanzania">Tanzania</option>
<option value="Rwanda">Rwanda</option>
<option value="Burundi">Burundi</option>
<option value="Somalia" selected>Somalia</option>
<option value="Sudan">Sudan</option>
<option value="Refugee">Refugee</option>
</select>
<br></br>
<button type="Reset">Reset</button>
<br></br>
<button type="submit">Submit</button> <br></br>
<input type="submit" value="Send"> <br></br>
</form>
</body>
</html>