-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTables.html
34 lines (34 loc) · 926 Bytes
/
Tables.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="css/table.css">
</head>
<body>
<div id="main">
<div id="first">
<h1>Styled Drop-Down Field in Form</h1>
<form id="myform" name="myform">
<label>Name :</label>
<input class="name" type="text">
<label>Email :</label>
<input class="email" type="text">
<label>Age :</label>
<select>
<option>--- Choose Age From Here ---</option>
<option>Below 18 years</option>
<option>Between 18-25 years</option>
<option>Between 25-40 years</option>
<option>Between 40-60 years</option>
<option>Above 60 years</option>
</select>
<input class="submit" type="submit" value="Submit">
</form>
</div>
</div>
</body>
</html>