generated from Code-Institute-Org/ci-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
71 lines (68 loc) · 3.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Local café for those who are visiting Trim, Ireland">
<meta name="keywords" content="café, coffee, brunch, trim, braveheart">
<link rel="stylesheet" type="text/css" href="assets/css/styles.css">
<script src="https://kit.fontawesome.com/a2cdc22893.js" crossorigin="anonymous"></script>
<title>The Olive Tree - Home</title>
</head>
<body>
<header>
<a href="index.html"><div id="logo">The Olive Tree</div></a>
<nav>
<ul id="menu">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<!-- Background with heading -->
<div id="homeimage">
<div id="bigheading">Do you fancy a coffee?</div>
</div>
<!-- Testimonials section -->
<section id="testimonials">
<h1>Testimonials</h1>
<div class="testimonialitem">
<p>I visited this coffee shop on a busy weekday morning and was impressed by their quick service and friendly staff. The coffee was delicious and the atmosphere was cozy and comfortable. The prices were reasonable and the location was convenient. I highly recommend this coffee shop to anyone looking for a great cup of coffee in a welcoming environment.</p>
<div class="author"><i class="fa-solid fa-user"></i> John Smith</div>
</div>
<div class="testimonialitem">
<p>This coffee shop has become my go-to spot for studying and catching up with friends.
The ambiance is perfect with cozy seating arrangements and relaxing music.
The staff is always friendly and attentive. They offer a variety of coffee blends and the pastries are amazing.
I always leave feeling refreshed and productive. Highly recommended!
</p>
<div class="author"><i class="fa-solid fa-user"></i> Emma Watson</div>
</div>
<div class="testimonialitem">
<p>This coffee shop is the perfect spot for a quick caffeine fix.
The coffee is always hot and flavorful, and the service is efficient. A great option for those on-the-go.
</p>
<div class="author"><i class="fa-solid fa-user"></i> David Beckham</div>
</div>
<div class="testimonialitem">
<p>I recently visited this coffee shop and was blown away by the quality of the coffee.
The latte was rich and creamy, and the baristas were skilled in their craft.
The atmosphere was welcoming and the decor was stylish. I appreciated the wide selection of pastries and sandwiches as well.
Overall, this coffee shop is a must-visit for coffee enthusiasts and anyone looking for a cozy spot to unwind.
</p>
<div class="author"><i class="fa-solid fa-user"></i> Beyoncé Knowles</div>
</div>
</section>
<!-- Footer section -->
<footer>
<div id="footercontent">
<span>All rights reserved | </span>
<span><a href="https://www.facebook.com" aria-label="Access Facebook" target="_blank"><i class="fa-brands fa-square-facebook" style="color: #ffffff;"></i></a></span>
<span><a href="https://www.instagram.com" aria-label="Access Instagram" target="_blank"><i class="fa-brands fa-square-instagram" style="color: #ffffff;"></i></a></span>
</div>
</footer>
</body>
</html>