-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
183 lines (120 loc) · 4.48 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
181
182
183
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Starbucks</title>
<link rel="stylesheet" href="assets/style/style.css" />
<link rel="stylesheet" href="assets/style/mediaquery.css" />
</head>
<body>
<header>
<div class="line"></div>
<div class="container header-area">
<div class="header-left">
<a href="#"><img src="assets/img/logo.png" alt="Starbucks logo" /></a>
</div>
<div class="header-right">
<div class="header-search">
<form>
<input type="search" name="search_nm" id="search-field" placeholder="Search"/>
<button>
<img src="assets/img/loupe.png" alt="Search icon" />
</button>
</form>
</div>
<div class="header-menu">
<img src="assets/img/menu.png" alt="Menu icon" />
</div>
</div>
</div>
</header>
<section class="banner">
<div class="container">
<h1>Starbucks®<br />Happy Hour</h1>
<span>We'll meet you in your inbox. Drink deals are on their way</span>
<div class="banner-images">
<img src="assets/img/c1.jpg" alt="Starbucks shake" />
<img src="assets/img/c2.jpg" alt="Starbucks shake" />
<img src="assets/img/c3.jpg" alt="Starbucks shake" />
</div>
</div>
</section>
<section class="area1">
<div class="area1-content">
<div class="bar"></div>
<h2>Four Drinks, A Million Reasons</h2>
<div class="area1-quote">
<p><em>"Just love yourself and you're set."</em> - Lady Gaga</p>
</div>
<div class="area1-text">
<p>
Lady Gaga and Starbucks share a mission: to build a kinder, braver
world. Through the Born This Way Foundation, Lady Gaga has inspired
her fans to embrace kindness in their communities—online and in the
world. With your help, we can empower young people to spread more
kindness.
</p>
</div>
<a href="#" class="button">learn more</a>
</div>
<div class="area1-img1"></div>
<div class="area1-img2"></div>
</section>
<section class="area2">
<div class="area2-content">
<div class="bar"></div>
<h2>Introducing Vanilla Sweet, Cream Cold Brew - Sweet, Creamy, Cold, Bold
</h2>
<div class="area2-text">
<p> Just before serving, our slow-steeped custom blend
Starbucks® Cold Brew Coffee is topped with a delicate float
of house-made vanilla sweet cream that cascades
throughout the cup.
</p>
</div>
<a href="#" class="button">learn more</a>
</div>
<div class="area2-img1"></div>
<div class="area2-img2"></div>
</section>
<section class="area3">
<div class="area3-content">
<h2>The New Ultra Caramel <br> Frappuccino Is Here </h2>
<div class="area3-text">
<p>
Congrats on doing that thing! This calls for caramel. Lots
of it. With cold brew whipped cream. The new Ultra
Caramel Frappuccino is here!
</p>
</div>
<a href="#" class="button">learn more</a>
</div>
<div class="area3-img"></div>
</section>
<section class="area4">
<div class="area4-content">
<div class="bar"></div>
<h2>Kindness Starts With A Cup</h2>
<div class="area4-text">
<p>
ntroducing the Cups of Kindness
collection: four very special drinks as
delicious and refreshing as they are
beautiful. Two new creations, Matcha
Lemonade and Violet Drink, will join Pink
Drink and Ombré Pink Drink as instant
summer favorites.
</p>
</div>
<a href="#" class="button">learn more</a>
</div>
<div class="area4-img"></div>
</section>
<section class="area5"></section>
<footer>
<p>Criado por Kauã Vitor Rodrigues</p>
<p>Créditos do layout para <a href="https://nicepage.com/" target="_blank">Nicepage</a></p>
</footer>
</body>
</html>