-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
149 lines (136 loc) · 4.48 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
137
138
139
140
141
142
143
144
145
146
147
148
149
<!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" href="./styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
/>
<title>Terra | Furniture That Works</title>
</head>
<body>
<!--Navigation Bar -->
<div class="container">
<div class="nav">
<span class="nav-main-name"
><a class="link" href="./index.html">Terra</a></span
>
<ul class="nav-prodcuts">
<li>Home</li>
<li>Office</li>
<li>Conference</li>
<li>Accessories</li>
</ul>
</div>
<div class="bg-img">
<!-- Showcase -->
<div class="showcase">
<h1 class="showcase-title">
<span>Furniture For A Better Way To Live</span>
</h1>
<p class="showcase-text">
Build a beautiful place without breaking the bank
</p>
<button class="shop-btn">SHOP NOW</button>
</div>
</div>
</div>
<!-- Product Main Container -->
<h2>Explore Our Products</h2>
<div class="products-container">
<div class="products">
<img src="./img/home.jpg" alt="white bed with green plants" />
<h3>Home</h3>
<p class="text">
Enjoy stylish and ergonomic furniture for every budget, for the home.
</p>
</div>
<!--Categories of Products -->
<div class="products">
<img
src="./img/office.jpg"
alt="white table with macbook and coffe on it"
/>
<h3>Office</h3>
<p class="text">
Everything you need to do your best work at home or at the office.
</p>
</div>
<div class="products">
<img src="./img/conferencejpg" alt="arm holding bulb" />
<h3>Conference</h3>
<p class="text">
Collaborate in style with the Terra line of conference and lounge
furniture.
</p>
</div>
<div class="products">
<img
src="./img/accessories.jpg"
alt="green cactus with white background"
/>
<h3>Accessories</h3>
<p class="text">
From desk organization to wireless charging, explore the little things
that help your office get to work.
</p>
</div>
</div>
<!-- Quote -->
<div class="quote">
<p class="quote-txt">
<i style="text-align: center" class="fa-solid fa-quote-left"></i>
<em
>Imagination is the beginning of creation. You imagine what you
desire, you will what you imagine and at last you create what you
will.</em
>
<i style="text-align: center" class="fa-solid fa-quote-right"></i>
</p>
<p class="author">George Bernard Shaw</p>
</div>
<!--Partners Section -->
<div class="partners">
<p class="partners-title">TRUSTED BY HUNDREDS OF CORPORATE TEAMS</p>
<div class="partners-icons">
<i style="padding-top: 16px" class="fa-brands fa-amazon fa-3x"></i>
<i class="fa-brands fa-apple fa-3x"></i>
<i class="fa-brands fa-google fa-3x"></i>
<i class="fa-brands fa-microsoft fa-3x"></i>
<i class="fa-brands fa-tumblr fa-3x"></i>
<i class="fa-brands fa-shopify fa-3x"></i>
</div>
</div>
<!-- Sign-Up Area -->
<div class="sing-up-container">
<div class="sign-up">
<div class="left">
<p class="sign-up-title">Call to action! It's time!</p>
<p class="sign-up-text">
Sign up for our product by clicking that button right over there
</p>
</div>
<div class="right">
<button>Sign Up</button>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<div class="footer-container">
<div class="empty"></div>
<div class="footer-text">
<p class="footer-name""><span>Terra</span> | 14360 Bellaire Blvd #126, Houston, TX 77083, United States </p>
</div>
<div class="footer-img">
<a class="socials" href="#"><i class="fa-brands fa-twitter fa-2x"></i></a>
<a class="socials" href="#"><i class="fa-brands fa-instagram fa-2x"></i></a>
<a class="socials" href="#"> <i class="fa-brands fa-linkedin fa-2x"></i></a>
</div>
</div>
</footer>
</body>
</html>