-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForms_8..html
More file actions
103 lines (69 loc) · 2.23 KB
/
Forms_8..html
File metadata and controls
103 lines (69 loc) · 2.23 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!-- Webdev preist -->
<!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>Document</title>
</head>
<body>
<h1>Welcome to my Html Form</h1>
<h3>Please fill the form to become part of my team</h3>
<form action="backend.php">
<label for="name">Name: </label>
<div>
<input type="text" name="Name" id="name">
</div>
<br>
<label for="reg">Reg No: </label>
<div>
<input type="number" name="regno" id="reg">
</div>
<br>
<label for="sec">Section: </label>
<div>
<input type="text" name="Name" id="sec">
</div>
<br>
<label for="email">Email: </label>
<div>
<input type="email" name="email" id="email">
</div>
<br>
<label for="dob">Date of Birth: </label>
<div>
<input type="date" name="dob" id="dob">
</div>
<br>
<div>
Currently enrolled in Computer Science? <input type="checkbox" name="" id="">
</div>
<br>
<label for="country">Country</label>
<div>
<select name="mycountry" id="country" ><option value="Pakistan">Pakistan</option>
<option value="India">India</option>
<option value="Srilanka">Srilanka</option></select>
</div>
<div>
Gender: male<input type="radio" name="myGender">
Female<input type="radio" name="myGender" >
</div>
<label for="age">Age: </label>
<div>
<input type="number" name="myAge" id="age">
</div>
<label for="suggestion">Please Write down Your motivation to learn Front-End Development below </label>
<div>
<br><textarea name="myTextarea" cols="30" rows="10" id="suggestion"></textarea>
</div>
<div>
<input type="button" value="Submit Now">
<input type="reset" value="Reset Values">
</div>
</form>
</body>
</html>
<!-- Todays Shortcuts -->
<!-- ALT + arrow -->