-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
49 lines (43 loc) · 1.28 KB
/
form.html
File metadata and controls
49 lines (43 loc) · 1.28 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>
<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>
<form action="/action.php">
<h2>Registration</h2>
<input type="text" placeholder="enter your email">
<input type="password" placeholder="password">
<br>
<br>
<h4>Select you're Class</h4>
<label for="101">
<input type="radio"value="class X"name="class" id="101">class X
</label>
<br>
<label for="102">
<input type="radio"value="class X"name="class" id="102">class XII
</label>
<br>
<br>
<h4>Select you're Subject</h4>
<label for="Math">
<input type="checkbox" value="class" name="subject"id="101">Math
</label>
<br>
<label for="Science">
<input type="checkbox" value="class" name="subject"id="102">Science
</label>
<br>
<label for="English">
<input type="checkbox" value="class" name="subject"id="103">English
</label>
<br>
<br>
<textarea name="feedback" id="101" placeholder="please give you're feedback " rows="5"></textarea>
</form>
</body>
</html>