-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (72 loc) · 2.83 KB
/
index.html
File metadata and controls
76 lines (72 loc) · 2.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home 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="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Italianno&display=swap" rel="stylesheet">
<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>
<!-- Main section -->
<section class="part-1">
<div class="intro">
<h2>Welcome to the Ryan's Reservations Event Center</h2>
</div>
<div class="intro-text">
<img src="images/pexels-pietrozj-348517.jpg" alt="fancy event picture">
<p>Where events meet excellence...
Experience the difference of personalized one-on-one planning.
</p>
</div>
</section>
<article class="home-summary">
<ul>
<li>Personalized and tailored to your interests</li>
<li>Our planners have over 20 years of experience</li>
<li>Connections with top catering, decore and venue partners</li>
</ul>
</article>
<section class="call-to-action">
<h3><a href="contact.html">Contact us for a quote today !</a></h3>
</section>
<!-- 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.html">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>