-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaboutus.html
77 lines (74 loc) · 3.1 KB
/
aboutus.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
69
70
71
72
73
74
75
76
77
<!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="aboutus.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="team">
<h2>Our Team</h2>
<div class="team-row">
<div class="team-member">
<img src="/Users/nisayurusandaneth/Downloads/Lec/IMG_8347 2.jpg" alt="Member 1">
<h3>Nisayuru Sandaneth</h3>
<p>0777 62 72 62 </p>
</div>
<div class="team-member">
<img src="/Users/nisayurusandaneth/Downloads/Lec/390993ba-66c5-41c3-8f3a-0de718e334ba.jpg" alt="Member 2">
<h3>Kaveesha Chathurindi</h3>
<p>Role</p>
</div>
<div class="team-member">
<img src="/Users/nisayurusandaneth/Downloads/Lec/9f24fd5e-7272-4713-8e78-3d3abca8816b.jpg" alt="Member 3">
<h3>Ranisha Abeysekara</h3>
<p>Role</p>
</div>
</div>
<div class="team-row">
<div class="team-member">
<img src="/Users/nisayurusandaneth/Downloads/Lec/5da01dcc-382d-48ef-b8e4-4865b0f221c2.JPG" alt="Member 4">
<h3>Deneth Fernando</h3>
<p>Role</p>
</div>
<div class="team-member">
<img src="/Users/nisayurusandaneth/Downloads/Lec/d227ba3a-ae0c-4176-ac2d-6d49c6b8e814.JPG" alt="Member 5">
<h3>Ravishka Iman</h3>
<p>Role</p>
</div>
<div class="team-member">
<img src="/Users/nisayurusandaneth/Downloads/Lec/2f9221cb-6ad7-4944-8d51-3a36863cc512.JPG" alt="Member 6">
<h3>Sasindu Senevirathne</h3>
<p>Role</p>
</div>
</div>
</div>
<!-- Add more team members as needed -->
</section>
<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>