-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (55 loc) · 1.77 KB
/
index.html
File metadata and controls
56 lines (55 loc) · 1.77 KB
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
<!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>Online Study Buddy</h1>
<br>
<h4>A one stop destination for coding materials...</h4>
<hr>
<h3>Sign Up Form</h3>
<br>
<form>
<p>Enter Name: <input > </p>
<p>Enter College Name: <input type="text"> </p>
<p>Usn No: <input type="number" placeholder="Last four digits only!"></p>
<p>Email Id:<input></p>
<p>Phone No:<input></p>
<p>Year of Degree:</p>
<label for="1">
<input type="radio" value="first" id="1" name="year">First
</label>
<input type="radio" value="second" name="year">Second
<input type="radio" value="third" name="year">Third
<input type="radio" value="final" name="year">Final
<p>Semester:
<select name="sem">
<option value="First">First</option>
<option value="Second">Second</option>
<option value="Third">Third</option>
<option value="Fourth">Fourth</option>
<option value="Fifth">Fifth</option>
<option value="Sixth">Sixth</option>
<option value="Seventh">Seventh</option>
<option value="Eigth">Eigth</option>
</select></p>
<textarea name="feedback" placeholder="Give your feedback!!!" id="F123" rows="4"></textarea>
<br><br>
<input type="submit" value="submit">
</form>
<hr>
<h4>Which domain are you interested in...?</h4>
<br>
<a href="/Basic_project/AI.html">Artificial Intelligence</a>
<br>
<a href="/Basic_project/DS.html">Data Sience</a>
<br>
<a href="/Basic_project/WebDev.html">Web Development</a>
<br>
<a href="/Basic_project/EthHack.html">Ethical Hacking</a>
<br>
</body>
</html>