-
Notifications
You must be signed in to change notification settings - Fork 41
/
index.html
75 lines (70 loc) · 2.35 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
<!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>Samsung Store</title>
<!-- font awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<!-- css -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- nav bar -->
<nav class="navbar">
<div class="navbar-center">
<span class="nav-icon">
<i class="fas fa-bars"></i>
</span>
<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 -->
<!-- poster-->
<header class="hero">
<div class="banner">
<h1 class="banner-title">Samsung Store</h1>
<button class="banner-btn">Shop now</button>
</div>
</header>
<!-- end of poster-->
<!-- products -->
<section class="products">
<div class="section-title">
<h2>Our Products</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>Your cart</h2>
<div class="cart-content">
<!-- cart item -->
<!--<div class="cart-item">
</div>
<!-- end of cart item -->
</div>
<div class="cart-footer">
<h3>your total: $ <span class="cart-total">0</span></h3>
<button class="clear-cart banner-btn">clear cart</button>
</div>
</div>
</div>
<!-- end of cart-->
<!-- java script -->
<script src="app.js"></script>
</body>
</html>