forked from chandresh189/Brownie-Cafe-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (105 loc) · 3.17 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!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">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap" rel="stylesheet">
<title>Cafe Brownie</title>
</head>
<body>
<header>
<div class="logo"><p>Cafe Brownie</p></div>
<ul class="nav">
<a href="#mission">About</a>
<a href="#featured-dishes">Featured Dishes</a>
<a href="#locations">Find-us</a>
</ul>
</header>
<main>
<section id="mission">
<!-- Heading -->
<div class="text">
<h2>Elegant Restaurant</h2>
<h2>&</h2>
<h2>Coffee Shop</h2>
<h4>We'll Bring Your Favourite Food To Your Table</h4>
</div>
</section>
<section id="featured-dishes">
<!-- Heading -->
<div class="featured-dishes-head">
<h2>Our Bestest Serves</h2>
<h4>Why Steeping at the dishes?</h4>
</div>
<div class="featured-dishes-img">
<figure id="item-1">
<img src="resources/img-berryblitz.jpg" alt="">
<figcaption>
Fall Berry Blitz Tea
</figcaption>
</figure>
<figure id="item-2">
<img src="resources/img-spiced-rum.jpg" alt="">
<figcaption>
Spiced Rum Tea
</figcaption>
</figure>
<figure id="item-3">
<img src="resources/img-donut.jpg" alt="">
<figcaption>
Seasonal Donut
</figcaption>
</figure>
<figure id="item-4">
<img src="resources/img-myrtle-ave.jpg" alt="">
<figcaption>
Myrtle Ave Tea
</figcaption>
</figure>
<figure id="item-5">
<img src="resources/img-bedford-bizarre.jpg" alt="">
<figcaption>
Bedford Bizzarre Tea
</figcaption>
</figure>
</div>
</section>
<section id="locations">
<div class="locations-title">
<h2>We can serve you at</h2>
</div>
<div class="locations-container">
<div id="location-container-1" class="location-containers">
<h3>Downtown</h3>
<p>Street Wall</p>
<p>Suite 12</p>
<p>Portland, Maine</p>
</div>
<div id="location-container-2" class="location-containers">
<h3>Hotel Mani</h3>
<p>Food Street</p>
<p>10th Avenue</p>
<p>Portland, OR</p>
</div>
<div id="location-container-3" class="location-containers">
<h3>Grand Ave</h3>
<p>1120 S</p>
<p>Grande Ave</p>
<p>Los Angeles, CA</p>
</div>
</div>
</section>
<section class="contact">
<h2>The Cafe Brownie</h2>
<h5>[email protected]</h5>
<h5>123-456-789</h5>
</section>
<footer>
<p>© Cafe Brownie 2021</p>
</footer>
</main>
</body>
</html>