-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
58 lines (49 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Faculty Of Computing</title>
<link rel="stylesheet" href="lec.css" />
</head>
<body>
<header class="header">
<nav class="navbar">
<h2 class="logo"><a href="#">Faculty Of Computing</a></h2>
<input type="checkbox" id="menu-toggle" />
<label for="menu-toggle" id="hamburger-btn">
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24">
<path d="M3 12h18M3 6h18M3 18h18" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
</svg>
</label>
<ul class="links">
<li><a href="/Users/nisayurusandaneth/Downloads/Lec/index.html">Home</a></li>
<li><a href="/Users/nisayurusandaneth/Downloads/Lec/book.html">Book Halls</a></li>
<li><a href="/Users/nisayurusandaneth/Downloads/Lec/feedback.html">Feedback</a></li>
<li><a href="/Users/nisayurusandaneth/Downloads/Lec/aboutus.html">About Us</a></li>
</ul>
</nav>
</header>
<div class="paragraph">
<p>
Welcome to Computing Faculty
</p>
<button><a href="/Users/nisayurusandaneth/Downloads/Lec/G/ground.html">
Ground Floor</a>
</button>
<button><a href="/Users/nisayurusandaneth/Downloads/Lec/B1/B1.html">
B1 Floor</a>
</button>
<button><a href="/Users/nisayurusandaneth/Downloads/Lec/B2/B2.html">
B2 Floor</a>
</button>
</div>
<footer class="footer">
<div class="container">
<p>© 2024 Lecture Hall Navigation System. All rights reserved. <br>
"Lecture Hall Navigation System - Empowering efficient movement within educational spaces."
</p>
</div>
</footer>
</body>
</html>