-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform2.html
More file actions
55 lines (55 loc) · 2.63 KB
/
Copy pathform2.html
File metadata and controls
55 lines (55 loc) · 2.63 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<center><h1>It's My Turn to know you</h1><hr><br></center>
<form action="">
<label for="name">Your Name:-</label>
<input type="text" name="name" id="name"><br><br>
<label for="age">Your Date Of Birth:-</label>
<input type="date" name="dob" id="age"><br><br>
<label for="email">Your email id:-</label>
<input type="email" name="email" id="email"><br><br>
<label for="number">Contact Number:-</label>
<input type="number" name="number" id="number"><br><br>
<label for="gender">Gender:-</label>
Male <input type="radio" name="gender" id="gender">
Female <input type="radio" name="gender" id="gender">
Others <input type="radio" name="gender" id="gender"><br><br>
<label for="city">Where Do you Live?</label>
<input type="text" id="city"><br><br><hr>
<h2>Some Questions for a study(You may skip it if you want):-</h2>
<label for="prefer">Which Browser You Prefer?</label>
<select name="prefer" id="prefer">
<option value="">--Select Your Prefered Browser:-</option>
<option value="chrome">Chrome</option>
<option value="edge">Microsoft Edge</option>
<option value="firefox">Mozilla Firefox</option>
<option value="other">Other</option>
</select><br><br>
<label for="browse">What do you prefer for browsing the internet?</label>
<select name="browse" id="browse">
<option value="">--Select--</option>
<option value="App">Mobile Application</option>
<option value="webapp">Web application</option>
<option value="website">Websites</option>
<option value="nm">Everything/No such preferance</option>
</select>
<hr>
<h2>Educational Background:-</h2>
<label for="college">Which College?School Do You Study in?</label>
<input type="text" id="college"><br><br>
<label for="sem">Which Smester/Class?</label>
<input type="number" id="sem"><br><br>
<label for="Contact">How Would you Like me to contact me?</label>
Mail <input type="radio" name="contact" id="Contact">
Call <input type="radio" name="contact" id="contact">
Don't Contact Me <input type="radio" name="contact" id="contact"><br><br>
<input type="submit" value="Submit Form">
</form>
</body>
</html>