forked from vaidik07/hackathon-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
basic.html
40 lines (40 loc) · 1.11 KB
/
basic.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
<!DOCTYPE html>
<html>
<head>
<title>Time Machine Tours</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Time Machine Tours</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Tours</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Welcome to Time Machine Tours!</h2>
<p>Travel through time and explore the world's most fascinating historical periods with our expert tour guides.</p>
<a href="#">Book Your Tour Now</a>
</section>
<section>
<h2>Featured Tours</h2>
<ul>
<li><a href="#">Russian revolution</a></li>
<li><a href="#">Medieval Europe Tour</a></li>
<li><a href="#">Victorian London Tour</a></li>
</ul>
</section>
</main>
<footer>
<p>© 2023 Time Machine Tours</p>
</footer>
</body>
</html>