-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTask4.html
54 lines (41 loc) · 1.15 KB
/
Task4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initill- scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Application Form</title>
</head>
<body>
<h1>Application Form</h1>
<form action="">
<label for="fname">Full Name: </label>
<input type="text" id="fname">
<br></br>
<label for="lname">User Name: </label>
<input type="text" id="lname">
<br></br>
<label for="password">Password: </label>
<input type="password" placeholder="Password">
<br></br>
<label for="password">Re Password: </label>
<input type="password" placeholder="Re Password">
<br></br>
<label for="address">Address: </label>
<input type="address" placeholder="Address ">
<br> </br>
<label for="age">Age: </label>
<input type="number" id="age">
<br></br>
<label for="gender">Gender: </label>
<select name="gender" id="gender">
<option value="Male">Male</option>
<option value="Female">Female</option>
<option value="Other">Other</option>
</select>
<br></br>
<button class="submit">Save</button>
</form>
</body>
</html>