-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (44 loc) · 1.78 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
<!DOCTYPE html>
<html>
<head>
<title>QRid | Welcome</title>
<link href="./css/style.css" type="text/css" rel="stylesheet">
</head>
<body>
<main>
</div>
<div class="intro">
<h2>Ready to register ??</h2>
<p>Get started by entering your details to the text boxes below! </p>
</div>
<div class="form1">
<form>
<fieldset>
<legend>Personal Details:</legend>
<label for="uName">Name:</label><br>
<input type="text" id="uName" name="uName" required><br>
<label for="institute">Institution:</label><br>
<input type="text" id="institute" name="institute" required><br>
<label for="sem">Current Semester:</label><br>
<input type="number" id="sem" name="sem" min="1" max="8" step="1" required>
<select id="branch" name="branch">
<option value="ECE">Electronics and Communication</option>
<option value="EEE">Electronics and Electrical</option>
<option value="CE">Civil</option>
<option value="ME">Mechanical</option>
<option value="IT">Information Technology</option>
</select>
</fieldset>
<br><br><br>
<input class="submit" type="submit" value="Submit">
</form>
</div>
</main>
<footer>
<br>
<a href="https://aloysiousbenoy.github.io">aloysiousbenoy.github.io</a>
<p> Don't like the site? Any issues you wanna report? Ping me on <a
href="mailto:[email protected]">email</a></p>
</footer>
</body>
</html>