This repository has been archived by the owner on Mar 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
136 lines (127 loc) · 4.49 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!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">
<link rel="stylesheet" type="text/css" href="./assets/css/reset.css" />
<link rel="stylesheet" type="text/css" href="./assets/css/index.css" />
<link rel="stylesheet" type="text/css" href="./assets/css/navigation.css" />
<link rel="stylesheet" type="text/css" href="./assets/css/home.css" />
<title>Candle Co.</title>
</head>
<body>
<nav class="navbar">
<div class="nav-group">
<div class="nav-item">
Home
</div>
<div class="nav-item">
Shop
</div>
<div class="nav-item">
About
</div>
</div>
<div class="nav-item">
<img style="height: 1.5em;" alt="Candle Co." src="./assets/images/Logo.webp" />
</div>
<div class="nav-item nav-search-container">
<input placeholder="Search" />
<button>
Search!
</button>
</div>
</nav>
<section class="home-splash home-main-splash">
<header>
<h1>Candles for everyone</h1>
</header>
<img alt="" src="./assets/images/Candles.webp" />
</section>
<section class="home-popular">
<header>
<h1>Our favorite products!</h1>
</header>
<div class="home-popular-items">
<article class="product">
<img alt="" src="./assets/images/products/SphereCubes.webp" class="product-image" />
<div class="product-info">
<div class="product-title">
Sphere cube candles
</div>
<div class="product-price">
$9.99
</div>
<div class="product-actions">
<div class="product-amount">
<button>-</button>
<span>1</span>
<button>+</button>
</div>
<button class="product-cart">
Add to cart
</button>
</div>
</div>
</article>
<article class="product">
<img alt="" src="./assets/images/products/NuttyCandles.webp" class="product-image" />
<div class="product-info">
<div class="product-title">
Winter smells candles
</div>
<div class="product-price">
$9.99
</div>
<div class="product-actions">
<div class="product-amount">
<button>-</button>
<span>1</span>
<button>+</button>
</div>
<button class="product-cart">
Add to cart
</button>
</div>
</div>
</article>
<article class="product">
<img alt="" src="./assets/images/products/TwistyCandles.webp" class="product-image" />
<div class="product-info">
<div class="product-title">
Twisty candles
</div>
<div class="product-price">
$9.99
</div>
<div class="product-actions">
<div class="product-amount">
<button>-</button>
<span>1</span>
<button>+</button>
</div>
<button class="product-cart">
Add to cart
</button>
</div>
</div>
</article>
</div>
</section>
<footer class="footer">
<div class="footer-nav">
<div class="nav-item">
Home
</div>
<div class="nav-item">
Shop
</div>
<div class="nav-item">
About
</div>
</div>
<div class="copyright">© 2022 - RikThePixel</div>
</footer>
</body>
</html>