-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (59 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Union store</title>
<!-- font awesome -->
<script src="https://kit.fontawesome.com/91918e86f9.js" crossorigin="anonymous"></script>
<!-- custom css -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- navbar -->
<nav class="navbar">
<div class="navbar-center">
<img src="./images/logo-union-store.svg" alt="store logo">
<h1 class="logo-name">union store</h1>
<div class="cart-btn">
<span class="nav-icon">
<i class="fas fa-cart-plus"></i>
</span>
<div class="cart-items">0</div>
</div>
</div>
</nav>
<!-- end of navbar -->
<!-- products -->
<section class="products">
<div class="section-title">
<h2>Los mejores productos</h2>
</div>
<div class="products-center">
</div>
</section>
<!-- end of products -->
<!-- cart -->
<div class="cart-overlay">
<div class="cart">
<span class="close-cart">
<i class="fas fa-window-close"></i>
</span>
<h2>Tu carro de compras</h2>
<div class="cart-content">
<!-- cart item -->
<!-- <div class="cart-item">
</div> -->
<!-- end of cart item -->
</div>
<div class="cart-footer">
<h3>Total : $ <span class="cart-total">0</span></h3>
<button class="clear-cart">Vaciar carro</button>
</div>
</div>
</div>
<!-- end of cart -->
<!-- app js -->
<script src="/app.js"></script>
</body>
</html>