-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtime.html
29 lines (29 loc) · 854 Bytes
/
time.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<h1>About Us</h1>
<p>This is the about page. where fantasy are brought to reality</p>
<img src="image 3.jpg" alt="About Image" class="page-image">
</main>
<footer>
<p>© 2024 My Website</p>
</footer>
</body>
</html>