-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
81 lines (81 loc) · 2.53 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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>About you</title>
</head>
<body>
<form action="mailto: [email protected]" method="post" enctype="text/plain">
<div>
<label for="name">Name: </label>
<input type="text" name="Myname" id="name">
</div>
<br>
<div class="">
<label for="course">Course</label>
<select class="" name="dep" id="course">
<option value="">select</option>
<option value="">B.Tech</option>
<option value="">B.Arch</option>
<option value="">B.Planing</option>
<option value="">B.Sc</option>
<option value="">B.A</option>
<option value="">M.Tech</option>
<option value="">MBA</option>
<option value="">MSc</option>
</select>
</div>
<br>
<div class="">
Year: <input type="text" name="year" value="">
</div>
<br>
<div class="">
<label for="dob">D.O.B. </label>
<input type="date" name="birthdate" id="D.O.B">
</div>
<br>
<div class="">
Institute: <input type="text" name="institute" value="">
</div>
<br>
<div class="">
Gender: Male <input type="radio" name="gender" value=""> Female <input type="radio" name="gender" value="">
Others <input type="radio" name="gender" value="">
</div>
<br>
<div class="">
<label for="gradyear">Graduation Year: </label>
<select class="" name="grad" id="gradyear">
<option value="yr">Select</option>
<option value="yr">2023</option>
<option value="yr">2024</option>
<option value="yr">2025</option>
<option value="yr">2026</option>
</select>
</div>
<br>
<div class="">
<label for="Phone">Mobile No.- </label>
<input type="tel" name="" value="" id="Phone">
</div>
<div class="">
<label for="mail">Email: </label>
<input type="email" name="" id="mail">
</div>
<br>
<div class="">
Write something about yourself: <br> <textarea name="name" rows="8" cols="80"></textarea>
</div>
<br>
<div class="">
Are you agree with Terms and conditions ? <input type="checkbox" name="" value="">
</div>
<br>
<div class="">
<input type="submit" >
<input type="reset" name="Re" value="Reset">
</div>
</form>
</body>
</html>