-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (77 loc) · 2.47 KB
/
Copy pathindex.html
File metadata and controls
78 lines (77 loc) · 2.47 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Project 01 | S1 _ Dexo</title>
<link
href="https://cdn.jsdelivr.net/npm/remixicon@4.5.0/fonts/remixicon.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="main">
<header>
<nav>
<div class="left-nav">
<h1>GCFH</h1>
<a id="home" href="#">Home</a>
<a href="#">Products</a>
<a href="#">Components</a>
<a href="#">Supports</a>
<a href="#">Find Store</a>
</div>
<div class="right-nav">
<i class="ri-search-line"></i>
<i class="ri-shopping-cart-2-line"></i>
<i class="ri-user-line"></i>
</div>
</nav>
</header>
<div class="hero">
<div class="lft-hero">
<h1>Lento Lounge <br>Nest Chair</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Fugiat quo, blanditiis maxime distinctio quaerat magnam! Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod, fugiat.</p>
<div class="cta">
<button> <i class="ri-shopping-cart-2-line"></i> Add to Cart</button>
<button id="lrnmore">Learn More</button>
<i class="ri-heart-line"></i>
</div>
<div class="three-cir">
<div id="cir1" class="cir"><div class="outer-cir"></div></div>
<div id="cir2" class="cir"></div>
<div id="cir3" class="cir"></div>
</div>
</div>
<div class="rght-hero">
<img src="./Images/Chair.png" alt="Chair Image">
</div>
</div>
<div class="hero-btm">
<div class="lft-btm">
<div class="features">
<h3>2.5k</h3>
<p>Sold Chairs</p>
</div>
<div class="features">
<h3>2.5k</h3>
<p>Sold Chairs</p>
</div>
<div class="features">
<h3>2.5k</h3>
<p>Sold Chairs</p>
</div>
<div id="last-ft" class="features">
<h3>2.5k</h3>
<p>Sold Chairs</p>
</div>
</div>
<div class="rght-btm">
<h3>2.5k</h3>
<p>Sold Chairs</p>
</div>
</div>
</div>
</body>
</html>