-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExaminationFormCode.html
72 lines (71 loc) · 1.97 KB
/
ExaminationFormCode.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
<!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>Regestration Form </title>
</head>
<body>
<center>
<h2 style = "color: brown"> EXAMINATION REGESTRATION FORM </h2>
<h4 style = "color: brown"> 2022-23</h4>
<h3>   Fill This Form</h3>
<form>
<table border="3">
<tr><td>
<center>
<br>
<label>Name:</label>
<input type="text">
<label> </label>
<label> </label>
<label>DOB:</label>
<input type="date">
<label> </label>
<label> </label>
<label>Email Address:</label>
<input type="email"><br><br><br>
<label> </label>
<label>Year:</label>
<label>Ist:</label>
<input type="checkbox">
<label> </label>
<label>IInd:</label>
<input type="checkbox">
<label> </label>
<label>IIIrd:</label>
<input type="checkbox">
<label> </label>
<label>IVth:</label>
<input type="checkbox">
<label>   </label>
<label>Upload your Photo: 📷</label>
<input type="file" name="" id=""><br><br><br>
<label>Mob No:</label>
<input type="tel" name="" id="">
<label> </label>
<label> </label>
<label>Address:</label>
<input type="text" size="50"><br><br><br>
<label>Create Your Password:</label>
<input type="password" name="" id="">
<label> </label>
<label> </label>
<label>Confirm Your Password:</label>
<input type="password" name="" id=""><br><br><br>
<label>Choose a Color According to Your Intermediate Marks:</label><br>
<p>Red 🔴 for below 50%</p>
<p>Orrange 🟠 for 50-75%</p>
<p>Yellow 🟡 for 75-90%</p>
<p>Green 🟢 for above 90%</p>
<label>Choose Color:</label>
<input type="color" name="" id="">
</center>
<br>
</td></tr></table><br><br><br>
<input type="submit" name="" id="">
</form>
</center>
</body>
</html>