-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (35 loc) · 1.53 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/icon-starbucks.ico" type="image/x-icon">
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="style/screen.css" media="screen">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;1,300&display=swap" rel="stylesheet">
<title>Starbucks</title>
</head>
<body>
<div id="circulo"></div>
<img src="img/logo.png" alt="Logo Starbucks" class="logo">
<main>
<section id="texto">
<h1>It's not just Coffee It's <span>Starbucks</span></h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Eum architecto dolore.
</p>
<button>Deixe o seu Like!</button>
</section>
<section id="imagem">
<img src="img/img1.png" alt="Copo Starbucks" class="starbucks">
</section>
</main>
<section id="menu">
<img src="img/img-pequena1.png" alt="Copo pequeno Starbucks" class="copo-pequeno verde">
<img src="img/img-pequena2.png" alt="Copo pequeno Starbucks" class="copo-pequeno amarelo">
<img src="img/img-pequena3.png" alt="Copo pequeno Starbucks" class="copo-pequeno rosa">
</section>
<script src="script/javascript.js"></script>
</body>
</html>