-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
45 lines (43 loc) · 1.85 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Retro Vintage Museum</title>
<link rel="stylesheet" href="src/style.css">
</head>
<body>
<header class="header">
<h1 class="animated">Retro Vintage Museum</h1>
</header>
<nav class="nav">
<ul>
<li><a href="game.html">Game Lobby</a></li>
<li><a href="cars.html">Retro Cars</a></li>
<li><a href="computers.html">Retro Computers</a></li>
<li><a href="radios-telephones.html">Radios & Telephones</a></li>
<li><a href="cameras.html">Retro Cameras</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="feedback.html">Feedback</a></li>
</ul>
</nav>
<section class="section">
<h2 class="animated">About Us</h2>
<p class="animated">
Retro Vintage Museum is dedicated to preserving the history of vintage technology. We showcase a collection of retro cars, computers, radios, telephones and cameras that take you on a journey back in time.
</p>
</br>
<p class="animated">
Founded by Obakeng Retro and Mildred Vintage, our museum is a labor of love. We are passionate about sharing the stories of these iconic devices with visitors from around the world. We also partner with enthusiasts and collectors who share our vision.
</p>
</br>
<p class="animated">
Thank you for visiting and supporting Retro Vintage Museum. Together, we keep the spirit of vintage technology alive!
</p>
</section>
<footer class="footer">
<p>© 2023 Retro Vintage Museum. All rights reserved.</p>
</footer>
</body>
</html>