-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (66 loc) · 1.67 KB
/
index.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!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>Online Form</title>
</head>
<body>
<h2>Online Form</h2>
<form id="form">
<div>
Username:
<br />
<input type="text" id="username" required />
</div>
<br />
<div>
Password:
<br />
<input type="password" id="password" required />
</div>
<br />
<div>
Email:
<br />
<input type="email" id="email" required />
</div>
<br />
<div>
Birth date:
<br />
<input type="date" id="birthdate" required />
</div>
<br />
<div>
City:
<br />
<select id="city">
<option>Mumbai</option>
<option>New Delhi</option>
<option>Bangalore</option>
<option>Hyderabad</option>
</select>
</div>
<br />
<div>
Programming Languages Known:
<br />
<input type="checkbox" id="c" value="C" />C
<br>
<input type="checkbox" id="cpp" value="C++" />C++
<br>
<input type="checkbox" id="java" value="Java" />Java
<br>
<input type="checkbox" id="javascript" value="JavaScript" />JavaScript
<br>
<input type="checkbox" id="python" value="Python" />Python
<br>
</div>
<br />
<button type="submit">Submit</button>
</form>
<script src="index.js"></script>
</body>
</html>