-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (76 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<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">
<title>Shop App Vanilla JS </title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="index.scss">
</head>
<body>
<header class="app-header">
<div class="header__logo">
Logo
</div>
<nav class="header__nav">
<ul class="header__list">
<li class="header__item">
<a href="#" class="header__link">Start</a>
</li>
<li class="header__item">
<a href="#" class="header__link">Products</a>
</li>
<li class="header__item">
<a href="#" class="header__link">Contact</a>
</li>
</ul>
</nav>
<a href="#" class="header__link header__link--shop">
<span class="header-count">0</span>
<i class="fa fa-shopping-cart fa-lg cart-button" aria-hidden="true"></i>
</a>
</header>
<main class="app-main">
<section class="intro">
<div class="intro__header">
<h1>Enjoy a travel</h1>
<p>See the most beautyfull place in the world!!</p>
<button class="btn btn--intro">
See more
</button>
</div>
</section>
<section class="products">
<div class="products__header">
<h1>
Products
</h1>
</div>
<div class="products__container">
</div>
</section>
</main>
<section class="shop-cart">
<div class="overlay"></div>
<div class="shop-cart__container">
<div class="close">X</div>
<div class="shop-cart__wrap">
<h3>Your Cart</h3>
<ul class="shop-cart__list">
</ul>
<div class="shop-cart__total">
<h4>Your total price: <span class="total-price">$1200.00</span></h4>
<button class="btn btn--total">Clear cart</button>
</div>
</div>
</div>
</section>
<footer class="app-footer">
<div class="footer__copy">
<p> All rights reserved 2019</p>
</div>
</footer>
<script src="index.ts"></script>
</body>
</html>