-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (95 loc) · 4.23 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
<!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">
<title>Starbucks</title>
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<header>
<div class="line"></div>
<div class="container header-area">
<div class="header-left">
<a href="#"><img src="assets/img/logo.png"></a>
</div>
<div class="header-right">
<div class="header-search">
<form>
<input type="text" name="search" placeholder="Search">
<button>
<img src="assets/img/loupe.png">
</button>
</form>
</div>
<div class="header-menu">
<a href="#"><img src="assets/img/menu.png"></a>
</div>
</div>
</div>
</header>
<section class="banner">
<div class="banner-container 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">
<img src="assets/img/c2.jpg">
<img src="assets/img/c3.jpg">
</div>
</div>
</section>
<section class="area1">
<div class="area1-content content">
<div class="bar"></div>
<h2>Four Drinks, A Million <br> Reasons</h2>
<div class="area1-quote">
<em>"Just love yourself and you're set."</em> – Lady Gaga</div>
<div class="area1-text text">
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.
</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 content">
<div class="bar"></div>
<h2>Introducing Vanilla Sweet <br>Cream Cold Brew—Sweet, <br>Creamy, Cold, Bold.</h2>
<div class="area2-text text">
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.
</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 content">
<h2>The New Ultra Caramel<br> Frappuccino Is Here!</h2>
<div class="area3-text text">
Congrats on doing that thing! This calls for caramel. Lots of it. With cold brew whipped cream. The new Ultra Caramel Frappuccino is here!
</div>
<a href="#" class="button">learn more</a>
</div>
<div class="area3-img1"></div>
</section>
<section class="area4">
<div class="area4-content content">
<div class="bar"></div>
<h2>Kindness Starts <br>
With A Cup</h2>
<div class="area4-text text">Introducing 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.</div>
<a href="#" class="button">learn more</a>
</div>
<div class="area4-img1"></div>
</section>
<section class="area5"></section>
<footer>
<p>Criado por JP</p>
<p>Créditos do <a href="https://nicepage.com/website-templates/preview/starbucks-coffee-17223?device=desktop" target="_blank">layout</a> para <a href="https://nicepage.com/" >Nicepage</a></p>
</footer>
</body>
</html>