-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.57 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Dynamic Resume</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<form name="form" >
<input type="text" name="firstName" placeholder="First Name" autocomplete="on" autofocus="on"></input><br>
<input type="text" name="lastName" placeholder="Last Name" autocomplete="on" ><br>
<input type="date" name="DOB" autocomplete="on" placeholder="DD-MM-YYYY" ><br>
<input type="radio" name="Gender" value="Male" checked><label>Male</label>
<input type="radio" name="Gender" value="Female" ><label>Female</label>
<input type="radio" name="Gender" value="Other" ><label>Other</label><br>
<input type="number" name="Number" placeholder="Contact Number"><br>
<input type="email" name="Mail" placeholder="E-mail"><br>
<input type="text" name="Address" autocomplete="off" placeholder="Address"><br>
<input list="Graduation" name="Graduation" placeholder="Graduation" >
<!--datalist is list of predefine options for input-->
<datalist id="Graduation" autocomplete="off" >
<option value="Graduated">Graduated</option>
<option value="Under Graduation">Under Graduation</option>
<option value="12th">12<sup>th</sup></option>
<option value="10th">10<sup>th</sup></option>
</datalist><br><br>
<input type="text" name="skills" placeholder="Technical Skills"><br>
<button type="button" onclick="get()" >Submit</button><br>
</form>
<!--Filled form-->
</body>
</html>