-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
35 lines (29 loc) · 930 Bytes
/
about.html
File metadata and controls
35 lines (29 loc) · 930 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BODHI</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header class="header">
<img src="BODHI.png" alt="" height="60px" style="border-radius: 50%;">
<nav class="navbar">
<ul class="nav-links">
<li><a href="home.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main class="main">
</main>
<footer class="footer">
<p>© 2025 BODHI. All rights reserved.</p>
</footer>
</div>
</body>
</html>