-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (68 loc) · 2.71 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
<!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">
<link rel="stylesheet" href="style1.css">
<link rel="icon" href="assets/logo.png" type="image/x-icon">
<title>Semester Exam Regestration Form</title>
</head>
<body>
<nav>
<img src="assets/SRMlogo (1).png" class="logo">
<h1>SRM INSTITUTE OF SCIENCE AND TECHNOLOGY</h1>
</nav>
<hr size="2">
<form action="submit.html">
<center><h2>Semester Exam Regestration Form</h2></center>
<div class="text1">Name</div><input type="text" placeholder="Enter your name" required>
<div class="text2">Email</div><input type="email" placeholder="Enter your Email" required>
<div class="text3">Age</div><input type="text" placeholder="Enter your Age" required>
<div class="text4">Year of Study</div>
<select>
<option selected>Select</option>
<option>I</option>
<option>II</option>
<option>III</option>
<option>IV</option>
</select>
<div class="text5">Branch</div>
<select>
<option selected>Select</option>
<option>NCR, Delhi</option>
<option>Kattankulathur</option>
<option>Ramapuram </option>
<option>Vadapalani</option>
<option>Tiruchirappalli</option>
<option>Andhra Pradesh</option>
<option>Amaravati</option>
</select>
<div class="text6">Semester</div>
<select>
<option selected>Select</option>
<option>I</option>
<option>II</option>
<option>III</option>
<option>IV</option>
<option>V</option>
<option>VI</option>
<option>VII</option>
<option>VIII</option>
</select>
<div class="text7">Degree</div>
<select>
<option selected>Select</option>
<option>Bachelor of Technology (B.Tech)</option>
<option>Bachelor of Enginneering (BE)</option>
<option>Bachelor of Applied Science (BAS)</option>
<option>Bachelor of Arts (BA)</option>
<option>Bachelor of Fine Arts (BFA)</option>
<option>Bachelor of Medicine, Bachelor of Surgery (MBBS)</option>
</select>
<div class="text8">Upload the Fee Recipt</div>
<div class="upload"><input type="file"></div>
<input type="submit" id="submit">
</form>
</body>
</html>