-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (70 loc) · 2.56 KB
/
index.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
<!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>Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>SHRUSTI UNIVERSITY</h1>
<h3><marquee>IMP ANNOUNCEMENT FYJC/SYJC College Admission open HURRY UP!</marquee></h3>
<h4>Registration Form</h4>
<form action="/action.php">
Name:<input type="text" placeholder="enter your name"/>
<br>
<br>
Password:<input type="password" placeholder="enter password"/>
<br>
<br>
<hr>
<h5>Other details</h5>
Mobile no.<input type="text" placeholder="mobile no."/>
E-mail id<input type="text" placeholder="E-mail id."/>
Address<input type="text" placeholder="address"/>
<h5>select your class</h5>
<label for="101">
<input type="radio" value="class XI" name="class" id="101"/>class XI
</label>
<br>
<lable for="102">
<input type="radio" value="class XII" name="class" id="102"/>class XII
</label>
<br>
<h5>select your city</h5>
<select name="city">
<option value="Delhi">Delhi</option>
<option value="mumbai">Mumbai</option>
<option value="bangloure">bangloure</option>
<option value="pune">pune</option>
</select>
<br>
<br>
<h5>Select your fav subject</h5>
<label for="physics">
<input type="checkbox" value="physics" name="subject" id="101"/>physics
</label>
<br><br>
<label for="chemistry">
<input type="checkbox" value="chemistry" name="subject" id="102"/>chemistry
</label>
<br><br>
<label for="maths">
<input type="checkbox" value="maths" name="subject" id="103"/>maths
</label>
<br><br>
<label for="computer sci.">
<input type="checkbox" value="computer sci." name="subject" id="104"/>computer sci.
</label>
<br>
<br>
<hr>
<br>
<textarea name="feedback" id="101" placeholder="please give your feedback" rows="5"></textarea>
<br>
<br>
<input type="submit" value="submit"/>
</form>
</body>
</html>