-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
62 lines (57 loc) · 1.79 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
<html>
<head>
<meta charset="utf-8">
<title>Hipster's Labs</title>
<link href="https://fonts.googleapis.com/css?family=Work+Sans:400,700" rel="stylesheet">
<link href="css/reset.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<header class="navbar">
<h1 class="logo">
<img src="img/logo.svg" alt="logo do site hipsters labs"/>
</h1>
<nav>
<a class="category" href="#">masculino</a>
<a class="category" href="#">feminino</a>
<a class="category" href="#">infantil</a>
<a class="login" href="#">
<img src="img/ic-signin.svg" alt="imagem de log-in"/> entrar</a>
</nav>
</header>
<main class="hero">
<h2>Seja impactante</h2>
<p>Coloque aqui sua frase de impacto</p>
<button>Quero participar</button>
</main>
<section>
<h2 class="title">
<img src="img/img-feature.svg"/>
<br>
Imperdível</h2>
<div class="grid">
<div class="item">
<div class="item__picture">
<span class="item__flag">Tá pra rolo</span>
<img src="img/chico.jpg" alt="foto linda do chico"/>
<div class="item__owner">
<img src="https://picsum.photos/200/300/?random" alt="foto do dono">
<h3>mundodeolivia</h3>
</div>
</div>
<div class="item__infos">
<div>
<p>Cachecol xadrez</p>
<img src="img/ic-wishlist-on.svg" alt="Like icon">
</div>
<p>R$ 20</p>
</div>
</div>
<div class="item">teste</div>
<div class="item">teste</div>
<div class="item">teste</div>
<div class="item">teste</div>
</div>
</section>
</body>
</html>