-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
77 lines (74 loc) · 3.06 KB
/
about.html
File metadata and controls
77 lines (74 loc) · 3.06 KB
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>About Us page</title>
<link rel="icon" type="image/x-icon" href="images/notes112.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css"
integrity="sha512-2SwdPD6INVrV/lHTZbO2nodKhrnDdJK9/kg2XD1r9uGqPo1cUbujc+IYdlYdEErWNu69gVcYgdxlmVmzTWnetw=="
crossorigin="anonymous"
referrerpolicy="no-referrer" />
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar">
<i class="fas fa-bars menu-toggle" onclick="toggleMenu()"></i>
<h1 class="logo"><a href="index.html">Ryan's Reservations</a></h1>
<ul id="nav-link" class="nav-link">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
<script>
function toggleMenu() {
const menu= document.getElementById("nav-link");
menu.classList.toggle("active");
}
</script>
</nav>
<section>
<div class="intro">
<h2>Events that last a lifetime</h2>
</div>
</section>
<main class="about-us-main">
<div class="experience">
<h3>Experience</h3>
<p>Our experts have run over 3000 events over 20 years from birthday parties, to graduations to conventions.</p>
</div>
<div class="personalized">
<h3>Personalized</h3>
<div class="personalized-container">
<p>Our event experts will work to make your dream a reality. Every client is provided one-on-one consultations to tailor their event to their needs.</p>
<img src="images/pexels-silverkblack-23496573.jpg" alt="one-one-one help">
</div>
</div>
<div class="partnerships">
<h3>Partnerships</h3>
<p>We work with the most reputable partners in the events industry. Our experiences with these partners has lead us to find the best of best.</p>
<div class="partnership-photos">
<img src="images/4imprint.png" alt="4imprint">
<img src="images/decorcompany.jpg" alt="decor company">
<img src="images/cateringcompany.jpg" alt="catering company">
</div>
</div>
</main>
<!-- Footer -->
<footer>
<ul class="policy-links">
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms of Use</a></li>
<li><a href="#">Contact Info</a></li>
</ul>
<ul class="social-media-links">
<li><a href="#">Twitter</a></li>
<li><a href="#">Instagram</a></li>
<li><a href="#">Facebook</a></li>
<li><a href="#">Tiktok</a></li>
</ul>
</footer>
</body>
</html>