-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (48 loc) · 1.62 KB
/
index.html
File metadata and controls
49 lines (48 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Form</title>
</head>
<body>
<div class="main">
<form>
<fieldset>
<legend>form 1</legend>
<h1>Event Register</h1>
<label for="fname">Enter your first name</label>
<input type="text" id="fname" name="fname">
<br>
<br>
<label for="email">Enter your email</label>
<input type="email" id="email" name="email">
<br>
<br>
<label for="phone">Enter Your phone number</label>
<input type="tel" name="phone" id="phone">
<br>
<br>
<label for="occupation">Your occupation</label>
<select name="occupation" id="occupation">
<option value="teacher">teacher</option>
<option value="farming">farming</option>
</select>
<br>
<br>
<label for="checkbox">java</label>
<input type="checkbox" name="checkbox" id="checkbox">
<br>
<br>
<label for="checkbox">python</label>
<input type="checkbox" name="checkbox" id="checkbox">
<br>
<br>
<label for="comment">Enter your comment</label>
<textarea name="comment" id="comment" cols="30" rows=""></textarea>
<br>
<br>
<button>submit</button>
</fieldset>
</form>
</div>
</body>
</html>