Skip to content

Commit ad641b7

Browse files
committed
finished footer
also added hover in the header nav
1 parent a07a6c5 commit ad641b7

5 files changed

Lines changed: 213 additions & 0 deletions

File tree

assets/facebook.svg

Lines changed: 10 additions & 0 deletions
Loading

assets/instagram.svg

Lines changed: 10 additions & 0 deletions
Loading

assets/twitter.svg

Lines changed: 10 additions & 0 deletions
Loading

index.html

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,60 @@ <h1>Discover how technology came so far with us</h1>
4848
</div>
4949
</div>
5050
</header>
51+
<footer>
52+
<div class="footer-pt">
53+
<div class="foot-logo-text">
54+
<img src="assets/nerv 1.svg" alt="NERV Logo" />
55+
<p>
56+
We are the inventors of innovative tools, We strive to always be one
57+
step ahead in the future to take care of your comfort and make your
58+
life as comfortable as possible.
59+
</p>
60+
<div class="socials">
61+
<img src="assets/facebook.svg" alt="Facebook Logo" />
62+
<img src="assets/instagram.svg" alt="Instagram Logo" />
63+
<img src="assets/twitter.svg" alt="Twitter Logo" />
64+
</div>
65+
</div>
66+
<div class="foot-column-wrap">
67+
<div class="nav-col">
68+
<h3>Navigate</h3>
69+
<ul>
70+
<li><a href="index.html">Home</a></li>
71+
<li><a href="#features">Features</a></li>
72+
<li><a href="#company">Company</a></li>
73+
<li><a href="#support">Support</a></li>
74+
<li><a href="#pricing">Pricing</a></li>
75+
</ul>
76+
</div>
77+
<div class="sup-col">
78+
<h3>Support Us</h3>
79+
<ul>
80+
<li><a href="#faq">FAQ</a></li>
81+
<li><a href="#contact-us">Contact us</a></li>
82+
<li><a href="#support-center">Support Center</a></li>
83+
<li><a href="#security">Security</a></li>
84+
</ul>
85+
</div>
86+
<div class="part-col">
87+
<h3>Partner</h3>
88+
<ul>
89+
<li><a href="#our-partner">Our Partner</a></li>
90+
<li><a href="#subscribe">Subscribe</a></li>
91+
</ul>
92+
</div>
93+
</div>
94+
</div>
95+
<div class="foot-footer">
96+
<p>Xborg 2022 All Rights Reserved</p>
97+
<nav>
98+
<ul>
99+
<li><a href="#terms-conditions">Terms & Conditions</a></li>
100+
<li><a href="#privacy-policy">Privacy Policy</a></li>
101+
<li><a href="#sitemap">Sitemap</a></li>
102+
</ul>
103+
</nav>
104+
</div>
105+
</footer>
51106
</body>
52107
</html>

styles.css

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
font-family: "Montserrat", sans-serif;
66
}
77

8+
body {
9+
background: linear-gradient(180deg, #060307 23.04%, #090a26 55.93%);
10+
}
11+
812
header {
913
background-image: url(assets/Zhang-Yiwei-CGI-women-short-hair-purple-hair-blue-eyes-2185487-wallhere\ 1.svg);
1014
background-size: cover;
@@ -46,6 +50,11 @@ header {
4650
gap: 25px;
4751
}
4852

53+
.nav-bar nav ul li a:hover {
54+
border-bottom: #ffffff 2px solid;
55+
padding-bottom: 10px;
56+
}
57+
4958
.nav-bar nav ul li a {
5059
text-decoration: none;
5160
color: #ffffff;
@@ -161,3 +170,122 @@ header {
161170
letter-spacing: 0%;
162171
color: #000000;
163172
}
173+
174+
footer {
175+
height: 497px;
176+
color: #ffffff;
177+
padding-top: 110px;
178+
border-top: #502356 1px solid;
179+
}
180+
181+
.footer-pt {
182+
padding-left: 120px;
183+
padding-right: 120px;
184+
display: flex;
185+
justify-content: space-between;
186+
align-items: center;
187+
border-bottom: #502356 1px solid;
188+
padding-bottom: 110px;
189+
}
190+
191+
.foot-logo-text {
192+
display: flex;
193+
flex-direction: column;
194+
width: 391px;
195+
height: 181px;
196+
opacity: 1;
197+
gap: 32px;
198+
}
199+
200+
.foot-logo-text img {
201+
width: 91px;
202+
height: 48px;
203+
opacity: 1;
204+
}
205+
206+
.foot-logo-text p {
207+
font-weight: 400;
208+
font-style: Regular;
209+
font-size: 12px;
210+
line-height: 100%;
211+
letter-spacing: 0%;
212+
}
213+
214+
.socials {
215+
display: flex;
216+
width: 172px;
217+
height: 24px;
218+
opacity: 1;
219+
gap: 50px;
220+
}
221+
222+
.socials img {
223+
width: 24px;
224+
height: 24px;
225+
opacity: 1;
226+
cursor: pointer;
227+
}
228+
229+
.foot-column-wrap {
230+
display: flex;
231+
justify-content: space-between;
232+
gap: 50px;
233+
}
234+
235+
.foot-column-wrap h3 {
236+
font-weight: 700;
237+
font-style: Bold;
238+
font-size: 16px;
239+
line-height: 100%;
240+
letter-spacing: 0%;
241+
}
242+
243+
.foot-column-wrap ul {
244+
list-style: none;
245+
display: flex;
246+
flex-direction: column;
247+
gap: 16px;
248+
margin-top: 24px;
249+
}
250+
251+
.foot-column-wrap ul li a {
252+
text-decoration: none;
253+
font-weight: 400;
254+
font-style: Regular;
255+
font-size: 14px;
256+
line-height: 100%;
257+
letter-spacing: 0%;
258+
color: #ffffff;
259+
}
260+
261+
.foot-footer {
262+
display: flex;
263+
justify-content: space-between;
264+
align-items: center;
265+
padding: 30px 120px;
266+
}
267+
268+
.foot-footer p {
269+
font-weight: 700;
270+
font-style: Bold;
271+
font-size: 14px;
272+
line-height: 100%;
273+
letter-spacing: 0%;
274+
}
275+
276+
.foot-footer ul {
277+
list-style: none;
278+
display: flex;
279+
justify-content: space-between;
280+
gap: 50px;
281+
}
282+
283+
.foot-footer ul li a {
284+
text-decoration: none;
285+
font-weight: 700;
286+
font-style: Bold;
287+
font-size: 14px;
288+
line-height: 100%;
289+
letter-spacing: 0%;
290+
color: #ffffff;
291+
}

0 commit comments

Comments
 (0)