-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.html
79 lines (77 loc) · 4.45 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta author="azabraao">
<title>Eccomerce</title>
<link type="text/css" rel="stylesheet" href="assets/css/index.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
</head>
<body>
<span class="background-overlay"></span>
<header class="site-header">
<div class="container">
<div class="site-header__content">
<div class="site-header__hamburguer-wrap no-desktop">
<a href="#" class="site-header__hamburguer js-hamburguer-toggle">
<span class="site-header__hamburguer-line"></span>
<span class="site-header__hamburguer-line"></span>
<span class="site-header__hamburguer-line"></span>
</a>
</div>
<div class="site-header__responsive-nav" style=" display: none;">
<div class="site-header__responsive-nav-header">
<div class="container">
<a href="#" class="site-header__responsive-nav-hamburguer js-hamburguer-toggle">
<span class="site-header__hamburguer-line"></span>
<span class="site-header__hamburguer-line"></span>
<span class="site-header__hamburguer-line"></span>
</a>
</div>
</div>
<nav class="site-header__responsive-nav-items">
<a href="#" class="is-uppercase site-header__responsive-nav-item">perfumaria</a>
<a href="#" class="is-uppercase site-header__responsive-nav-item">maquiagem</a>
<a href="#" class="is-uppercase site-header__responsive-nav-item">cabelos</a>
<a href="#" class="is-uppercase site-header__responsive-nav-item">infantil</a>
</nav>
</div>
<div class="site-header__logo">
<a href="/" class="is-uppercase is-bold" title="Main page">Minha loja</a>
</div>
<nav class="site-header__nav-items desktop-only">
<a href="#" class="is-uppercase site-header__nav-item" title="specific section">perfumaria</a>
<a href="#" class="is-uppercase site-header__nav-item" title="specific section">maquiagem</a>
<a href="#" class="is-uppercase site-header__nav-item" title="specific section">cabelos</a>
<a href="#" class="is-uppercase site-header__nav-item" title="specific section">infantil</a>
</nav>
<div class="site-header__cart">
<a href="#" class="site-header__cart-wrap" title="Cart exibition">
<span class="site-header__cart-icon-holder">
<picture>
<img src="assets/img/cart.png" alt="Cart icon">
</picture>
<span class="site-header__cart-total">R$ <span class="site-header__cart-total-price js-cart-total"></span></span>
</span>
</a>
</div>
</div>
</div>
</header>
<section class="last-products">
<div class="container">
<header class="last-products__header">
<span class="last-products__header-horizontal-line"></span>
<h2 class="is-uppercase">Últimos produtos</h2>
</header>
<div class="last-products__shelf">
<div class="last-products__shelf-items js-products"></div>
</div>
</div>
</section>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="assets/js/index.js"></script>
</body>
</html>