-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (88 loc) · 3.55 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>comfy store</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/691ea90499.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Satisfy">
</head>
<body>
<div class="container">
<div class="header">
<h1>comfy <span>Store</span></h1>
<ul>
<div class="links">
<i class="fa-solid fa-xmark"></i>
<a href="index.html">
<li>Home</li>
</a>
<a href="products.html">
<li>Products</li>
</a>
<a href="about.html">
<li>About</li>
</a>
</div>
</ul>
<button class="menu">Menu</button>
<i class="fa-solid fa-cart-shopping" id="openCart"><span>0</span></i>
</div>
<div class="cart-section">
<div class="closeCart">
<i class="fa-solid fa-xmark"></i>
</div>
<div class="bag-section">
<h1>Your Bag</h1>
<div class="bag-content">
<!-- <div class="content">
<div class="img">
<img src="images/background4.jpg" alt="">
</div>
<div class="info">
<div class="price-name">
<p>Item name Here</p>
<div class="price">
<span>$9.99</span>
</div>
<button>remove</button>
</div>
<div class="quantity">
<i class="fa-solid fa-angle-up"></i>
<div class="number">
<span>1</span>
</div>
<i class="fa-solid fa-angle-down"></i>
</div>
</div>
</div> -->
</div>
</div>
<div class="total-section">
<h1>Total: <span class="total">$99.99</span></h1>
<button>CHECKOUT</button>
</div>
</div>
<div class="intro">
<h1>Welcome To comfy Store. Shop your comfort</h1>
<p>
This is my first vanilla javascript project I am proud of. It's a comfy store shop were you buy
furnitures for your comfort. I just implemented the logic, it is not too complex but it tested me a lot
on JS concepts. Made with 🧡 by Ngu Helon.
</p>
<div class="buttons">
<a href="https://github.com/nguHelon">
<button>github <i class="fa-brands fa-github"></i></button>
</a>
<a href="products.html">
<button>Shop Now <i class="fa-solid fa-arrow-right"></i></button>
</a>
</div>
</div>
</div>
<script type="module" src="javascript/script.js"></script>
</body>
</html>