-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (97 loc) · 3.28 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
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
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!-- <h1> Hello World!</h1>
<a href="https://www.google.co.in/">Google</a>
<br/>
<a href="https://gssoc.girlscript.tech/project">GSSOC Projects</a>
<h2> Mona</h2> -->
<!--Image tage-->
<!-- <a href="https://www.google.co.in/"><img src="/microsoft1.jpeg"></a> -->
<header>
<main>
<!-- <ol>
<li>Fruits</li>
<ol>
<li>Apple</li>
<li>Banana</li>
<li>Orange</li>
</ol>
<hr>
<ol>
<li>Cars </li>
<ol>
<li>Baleno</li>
<li>BMW</li>
</ol>
</ol>
</ol> -->
<!-- <table>
<caption>Student Data</caption>
<thead>
<tr>
<th>Name</th>
<th>Roll No</th>
</tr>
</thead>
<tbody>
<tr>
<td>Monalisa</td>
<td>114</td>
</tr>
</tbody>
</table> -->
<form>
<h1>Registration Form</h1>
<form action ="/action.php"></form>
<input type="text" placeholder="Username ">
<br>
<br>
<input type="password" placeholder="Password">
<br>
<br>
<h4>Select Class</h4>
<input type="radio" value="Class XI" name="class">ClassXI
<input type="radio" value="Class XII" name="class">ClassXII
<br>
<br>
<h4>Select Fav Subjects</h4>
<label for="Math">
<input type="checkbox" value="Math" name="class" id="101"> Math
</label>
<label for="Phy">
<input type="checkbox" value="Phy" name="class" id="102"> Phy
</label>
<label for="Chem">
<input type="checkbox" value="Chem" name="class" id="103"> Chem
</label>
<label for="Bio">
<input type="checkbox" value="Bio" name="class" id="104"> Bio
</label>
<br>
<br>
Select your City
<select name="city" id="city">
<option value="Gujarat">Gujarat</option>
<option value="Mumbai">Mumbai</option>
<option value="Bangalore">Bangalore</option>
<option value="Delhi">Delhi</option>
</select>
<br>
<br>
<textarea name="Feedback" id="101" placeholder="Give your Feeback here" row="5">Feedback</textarea>
<br>
<input type="Submit" value="Submit">
</form>
<br>
<br>
<a href=""
</main>
</header>
</body>
</html>