-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (75 loc) · 2.19 KB
/
index.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
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
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<title>The Spice Route - Home</title>
<link rel="stylesheet" type="text/css" href="style.css">
<style>
/* Index page specific styles */
.index {
background-image: url("background.png");
background-size: cover;
background-position: center;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
text-align: center;
}
.index h1 {
font-size: 48px;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.index p {
font-size: 24px;
margin-bottom: 40px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.index .cta-button {
background-color: #06aed5;
color: #fff;
border: none;
padding: 12px 24px;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s;
text-decoration: none;
}
.index .cta-button:hover {
background-color: #0492ac;
}
</style>
</head>
<body>
<header class="header">
<a href="index.html"><img src="logo.png" alt="The Spice Route Logo" class="logo"></a>
<nav>
<ul>
<li><a href="about.html">About</a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="order.html">Order Now</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div class="main">
<div class="index">
<h1>Welcome to The Spice Route</h1>
<p>Experience the taste of perfection</p>
<a href="menu.html" class="cta-button">Explore Our Menu</a>
</div>
</div>
<footer class="footer">
<div class="opening-hours">
<p>Opening Hours: Mon-Sat: 9am-10pm, Sun: 11am-8pm</p>
</div>
<div class="partners">
<a href="https://www.facebook.com/" target="_blank"><img src="facebook.png" alt="Facebook"></a>
<a href="https://www.instagram.com/" target="_blank"><img src="instagram.png" alt="Instagram"></a>
<a href="https://twitter.com/home" target="_blank"><img src="twitter.png" alt="Twitter"></a>
</div>
</footer>
</body>
</html>