-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
52 lines (51 loc) · 3.32 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
<!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>Home Page</title>
<link rel="stylesheet" href="./css/homepage.css">
<!-- fonts -->
<link href='https://fonts.googleapis.com/css?family=Sofia' rel='stylesheet' />
</head>
<body>
<div class="menu">
<button class="open" onclick="change()" id="open"><svg style="width: 21px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M0 96C0 78.33 14.33 64 32 64H416C433.7 64 448 78.33 448 96C448 113.7 433.7 128 416 128H32C14.33 128 0 113.7 0 96zM0 256C0 238.3 14.33 224 32 224H416C433.7 224 448 238.3 448 256C448 273.7 433.7 288 416 288H32C14.33 288 0 273.7 0 256zM416 448H32C14.33 448 0 433.7 0 416C0 398.3 14.33 384 32 384H416C433.7 384 448 398.3 448 416C448 433.7 433.7 448 416 448z"/></svg></button>
<nav>
<ul class = "menuContiner" id="menu">
<li class="listItem"><a href="index.html">Home</a></li>
<li class="listItem"><a href="html/TimeTable/TimeTable.html">TimeTable</a></li>
<li class="listItem"><a href="https://nagipragalathan.github.io/Personal_website/about.html">Creator</a></li>
<li class="listItem"><a href="https://nagipragalathan.github.io/Personal_website/social.html">Contact</a></li>
<button class="btn" onclick="changeopen()"><svg class="svg" style="width: 22px;"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M310.6 361.4c12.5 12.5 12.5 32.75 0 45.25C304.4 412.9 296.2 416 288 416s-16.38-3.125-22.62-9.375L160 301.3L54.63 406.6C48.38 412.9 40.19 416 32 416S15.63 412.9 9.375 406.6c-12.5-12.5-12.5-32.75 0-45.25l105.4-105.4L9.375 150.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L160 210.8l105.4-105.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-105.4 105.4L310.6 361.4z"/></svg></button>
</ul>
</nav>
</div>
<div class="phudo">
<h1>Notes Lib</h1>
</div>
<div class="inputs">
<h2>Select Department</h2>
<select name="dep" class="dep" id="dep">
<option value="CSE">CSE</option>
<option value="IT">IT</option>
<option value="Mech">Mech</option>
</select>
<h2>Select Semester</h2>
<select name="sem" class="dep" id="sem">
<option value="1">1st</option>
<option value="2">2nd</option>
<option value="3">3rd</option>
<option value="4">4th</option>
<option value="5">5th</option>
<option value="6">6th</option>
<option value="7">7th</option>
<option value="8">8th</option>
</select>
<button class="submit" id="submit" onclick="submit()">Submit</button>
</div>
</body>
<script src="./js/homepage.js"></script>
<script src="./js/menu.js"></script>
</html>