-
Notifications
You must be signed in to change notification settings - Fork 0
/
reviews.html
76 lines (76 loc) · 3.32 KB
/
reviews.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Andrea Café - Reviews</title>
<link rel="stylesheet" href="assets/css/reviews.css">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@1,700&display=swap" rel="stylesheet">
<link rel="icon" href="assets/img/logo.png" type="image/x-icon">
</head>
<body>
<div class='container'>
<div class='navbar'>
<a href='team.html' target="_blank">
<img class='logo' src='assets/img/logo.png' title="View Our Team!"></a>
<nav>
<ul>
<b>
<li>
<a href='index.html' target="_blank" class="nav-link">Home</a>
</li>
<li>
<a href='gallery.html' target="_blank" class="nav-link">Gallery</a>
</li>
<li>
<a href='story.html' target="_blank" class="nav-link">Story</a>
</li>
<li>
<a href='menu.html' target="_blank" class="nav-link">Menu</a>
</li>
<li>
<a href='reviews.html' target="_blank" class="nav-link">Reviews</a>
</li>
<li>
<a href='contact.html' target="_blank" class="nav-link">Contact</a>
</li>
</b>
</ul>
</nav>
</div>
<section class="reviewers">
<div class="t_wrapper">
<div class="item">
<blockquote>
I really like the atmosphere, good coffee, and nice interior. This is a good place to study or chill with friends. The drinks and foods were all tasty and worthwhile. If you're up for a fresh place with beautiful old architecture then this is a must to visit.
</blockquote>
<img src="assets/img/elena-review.png" alt="photo">
<p>Elena, Singer, Lebanon.</p>
</div>
<!-- .item -->
<div class="two-col-reviewers">
<div class="item">
<blockquote>
This place is amazing! They offered the best coffee and showed the best attitude to its costumers. Internet connection is very fast and is unlimited as well.
</blockquote>
<img src="assets/img/elena-review.png" alt="photo">
<p>Elena, Singer, Lebanon.</p>
</div>
<div class="item">
<blockquote>
Will go again, I only popped in to get take-away cappuccinos, but I was struck by how friendly the service was. The cappuccinos were wonderful too! And very well priced.
</blockquote>
<img src="assets/img/elena-review.png" alt="photo">
<p>Elena, Singer, Lebanon.</p>
</div>
</div>
<div class="one-col">
<div class="item gradient">
<blockquote>
I would probably say that this café is a must for coffee lovers! The service was good, and the variety of coffee served in the ambiance was very satisfying. We will be back again!
</blockquote>
<img src="assets/img/elena-review.png" alt="photo">
<p>Elena, Singer, Lebanon.</p>
</div>
</div>
</body>
</html>