-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
180 lines (155 loc) · 6.74 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="./scss/landing.css" />
<title>Coffee Shop - Home</title>
</head>
<body>
<!-- NAVBAR -->
<header class="header">
<nav class="navbar">
<div class="navbar__left">
<img class="navbar__logo" src="../assets/logos/coffee-beans-logo-and-footer.svg" alt="coffee beans"/>
<h2 class="navbar__header">nitro</h2>
</div>
<div class="navbar__right">
<ul class="navbar__menu">
<li class="navbar__item"><a class="navbar__link navbar__link--active" href="./index.html">about</a></li>
<li class="navbar__item"><a class="navbar__link" href="./pages/menu.html">menu</a></li>
<li class="navbar__item"><a class="navbar__link" href="./pages/menu.html">shop now</a></li>
</ul>
</div>
</nav>
</header>
<main>
<!-- HERO -->
<section class="hero">
<div class="hero__left">
<h1 class="hero__header">nitro coffee</h1>
<p class="hero__text">Coffee is a brewed drink prepared from roasted coffee beans, the seeds of berries from certain Coffea species.</p>
<div class="hero-button">
<a href="./pages/menu.html">
<button class="hero-button__content">shop now</button>
</a>
</div>
</div>
<div class="hero__right">
<img class="hero__image" src="./assets/images/coffeebeans-hero.png" alt="coffee bag hero" />
</div>
</section>
<!-- PRODUCTS -->
<section class="product-section">
<h2 class="product-section__header">our products</h2>
<section class="cards">
<article class="card">
<div class="card__top">
<img class="card__image" src="./assets/images/coffeebeans.png" alt="coffee beans" />
</div>
<div class="card__bottom">
<div class="card-bottom-left">
<h3 class="card-bottom-left__header">coffee beans</h3>
<p class="card-bottom-left__text">Pack of 3</p>
</div>
<div class="card-bottom-right">
<p class="card-bottom-right__text">$19</p>
</div>
</div>
</article>
<article class="card">
<div class="card__top">
<img class="card__image" src="./assets/images/coldbrew.png" alt="cold brew" />
</div>
<div class="card__bottom">
<div class="card-bottom-left">
<h3 class="card-bottom-left__header">cold brew</h3>
<p class="card-bottom-left__text">1 can</p>
</div>
<div class="card-bottom-right">
<p class="card-bottom-right__text">$5</p>
</div>
</div>
</article>
<article class="card">
<div class="card__top">
<img class="card__image" src="./assets/images/inhousebrew.png" alt="in-house brew" />
</div>
<div class="card__bottom">
<div class="card-bottom-left">
<h3 class="card-bottom-left__header">in-house brew</h3>
<p class="card-bottom-left__text">1 cup</p>
</div>
<div class="card-bottom-right">
<p class="card-bottom-right__text">$3</p>
</div>
</div>
</article>
</section>
<div class="products-button">
<a href="./pages/menu.html">
<button class="products-button__content">view all</button>
</a>
</div>
</section>
<!-- ABOUT SECTION -->
<section class="about-section" id="about">
<div class="about-section__content">
<h3 class="about-section__header">we're different</h3>
<p class="about-section__text">We grow and roast our own beans. Every bean, every cup, every step of the way, we strive for excellence</p>
<div class="about-section-icons">
<img class="about-section-icons__icon" src="./assets/logos/planting.svg" alt="planting coffee beans"/>
<img class="about-section-icons__icon" src="./assets/logos/coffee-beans.svg" alt="coffee beans"/>
<img class="about-section-icons__icon" src="./assets/logos/coffee-cup.svg" alt="coffee cup"/>
</div>
<div class="about-section-button">
<button class="about-section-button__content">learn more</button>
</div>
</div>
<div class="about-section-image">
<div class="about-section-image__wrapper">
<img class="about-section-image__image" src="./assets/images/tiltedcan.png" alt="tilted coffee can"/>
</div>
</div>
</section>
<!-- DISCOUNT -->
<section class="discount-section">
<div class="discount-section-banner">
<p class="discount-section__text">Get 20% off your first order with code: <em class="discount-section__code">FirstNitro</em></p>
</div>
</section>
</main>
<!-- FOOTER -->
<footer class="footer">
<div class="footer__image--left">
<img class="footer__image" src="./assets/logos/coffee-beans-logo-and-footer.svg" alt="coffee beans"/>
</div>
<section class="footer__section">
<h3 class="footer__header">address</h3>
<p class="footer__text">503 Broadway Penthouse</p>
<p class="footer__text">New York</p>
</section>
<section class="footer__section">
<h3 class="footer__header">hours</h3>
<p class="footer__text"><span class="footer__text--bold">Monday - Friday:</span> 9am - 7pm</p>
<p class="footer__text"><span class="footer__text--bold">Saturday - Sunday:</span> 10am - 5pm</p>
</section>
<section class="footer__section">
<h3 class="footer__header">social</h3>
<a href="https://www.facebook.com">
<img class="footer__logo" src="./assets/logos/Facebook-Icon.svg" alt="facebook" />
</a>
<a href="https://www.yelp.com">
<img class="footer__logo" src="./assets/logos/Yelp-Icon.svg" alt="yelp" />
</a>
<a href="https://www.instagram.com">
<img class="footer__logo" src="./assets/logos/Instagram-Icon.svg" alt="instagram" />
</a>
</section>
<div class="footer__image--right">
<img class="footer__image" src="./assets/logos/coffee-beans-logo-and-footer.svg" alt="coffee beans"/>
</div>
</footer>
</body>
</html>