-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.html
More file actions
52 lines (44 loc) · 1.55 KB
/
Copy pathapplication.html
File metadata and controls
52 lines (44 loc) · 1.55 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
<html>
<Head>
</Head>
<title>
Salisu
</title>
<body style="background-color: rgb(0, 132, 255);">
<a href="./index.html">Home</a>
<a href="./aboutus.html">About Us</a>
<a href="./contact.html">contact</a>
<a href="./gallary.html">Gallary</a>
<a href="./application.html">Application</a>
<h1>PWC Tutorial</h1>
<p>This is my first Website during the Tutorial
<h3>Application</h3>
<form>
<div style="display: flex;">
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname"><br></div>
<div style="display: flex;>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname"></div>
<div style="display: flex;>
<label for="Age">Age:</label><br>
<input type="number" id="age" name="age"><br></div>
<div style="display: flex;>
<label for="gender">Gender:</label><br>
<input name="gender" type="radio">male<br>
<input name="gender" type="radio">female<br></div>
<select name="state">
<option value="Lagos">Lagos</option>
<option value="Ogun">Ogun</option>
<option value="Oyo">Oyo</option>
<option value="Ondo">Ondo</option>
<option value="Kogi">Kogi</option>
<option value="Kano">Kano</option>
<option value="Kaduna">Kaduna</option>
<option value="Sokoto">Sokoto</option>
<option value="Edo">Edo</option>
</select>
</form>
</p>
</body>
</html>