-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
41 lines (40 loc) · 1.27 KB
/
form.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
<!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, initial-scale=1.0">
<title>Life form</title>
</head>
<body>
<div align="center">
<h2>LIFE FORM</h2>
<pre>please all fields are not required</pre>
</div><br><br><br>
<fieldset>
<form method="post" action="">
<div>
<label for="fname">Name</label>
<input type="text" placeholder="Full Name" required>
</div><br><br>
<div>
<label for="lname">Life purpose</label>
<input type="text" placeholder="What do you want to achive before your cycle ends" required>
</div><br><br>
<div>
<label for="email">Age</label>
<input type="number" placeholder="18" required>
</div><br><br>
<div>
<div>
<label for="gender">Gender</label>
<select name="gender" id="">
<option value="male">male</option>
<option value="female">female</option>
</select>
</div><br><br>
</form>
</fieldset><br>
<pre>See my Table <a href="table.html">Here</a></pre>
</body>
</html>