-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestimonials.html
50 lines (47 loc) · 1.6 KB
/
testimonials.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
<!DOCTYPE html>
<html>
<head>
<title>Testimonials</title>
<link rel="stylesheet" href="navbar.css">
<link rel="stylesheet" href="extra.css">
<style type="text/css">
.testimonial {
height: 40vh;
display: flex
}
</style>
</head>
<body> <header>
<div id="head" class="flex">
<div id="logo">
<img src="logo.png" id="logo-img">
</div>
<div id="navbar">
<ul class="flex">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="location.html">Location</a></li>
<li><a href="testimonials.html">Testimonials</a></li>
<li><a href="contactt.html">Contact</a></li>
<li><a href="#.html" id="#">#</a></li>
</ul>
</header>
<main>
<div class="testimonial">
<img src="/path/to/image1.jpg" alt="Customer 1" class="avatar">
<p>"I had the best burger I've ever had at My Burger Restaurant! The staff was friendly and the atmosphere was great. I'll definitely be back!"</p>
<p class="name">- John Smith</p>
</div>
<div class="testimonial">
<img src="/path/to/image2.jpg" alt="Customer 2" class="avatar">
<p>"I've been coming to My Burger Restaurant for years and it never disappoints. The burgers are always cooked to perfection and the fries are always crispy. Highly recommend!"</p>
<p class="name">- Jane Doe</p>
</div>
</main>
<footer>
<p>©Copyright 2022 DESiBURGER</p>
</footer>
</body>
</html>