-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
218 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -477,7 +477,135 @@ <h2 class="heading--secondary"> | |
</section> | ||
</main> | ||
|
||
<footer class="footer"></footer> | ||
<footer class="footer"> | ||
<div class="container grid grid--footer"> | ||
<div class="logo-col"> | ||
<div class="logo"> | ||
<!-- Credit: https://www.flaticon.com/free-icon/layer_10169782 --> | ||
<img | ||
class="logo__img" | ||
src="img/logo.png" | ||
width="32px" | ||
height="32px" | ||
alt="The logo of DigitalCraft. A circle code block shape on the stack shape thing." | ||
/> | ||
<a class="logo__text" href="#">DigitalCraft</a> | ||
</div> | ||
|
||
<ul class="social-links"> | ||
<li> | ||
<a class="footer__link" href="#" | ||
><ion-icon | ||
class="social-icon" | ||
name="logo-linkedin" | ||
></ion-icon | ||
></a> | ||
</li> | ||
<li> | ||
<a class="footer__link" href="#" | ||
><ion-icon | ||
class="social-icon" | ||
name="logo-facebook" | ||
></ion-icon | ||
></a> | ||
</li> | ||
<li> | ||
<a class="footer__link" href="#" | ||
><ion-icon | ||
class="social-icon" | ||
name="logo-github" | ||
></ion-icon | ||
></a> | ||
</li> | ||
</ul> | ||
|
||
<p class="copyright"> | ||
Copyright © <span class="year">2027</span> by | ||
DigitalCraft Studio. All rights reserved. | ||
</p> | ||
</div> | ||
|
||
<div class="address-col"> | ||
<p class="footer__heading">Contact Us</p> | ||
<address class="contacts"> | ||
<p class="address"> | ||
4 Westmoreland St, Temple Bar, Dublin, D02 W951 | ||
</p> | ||
<p> | ||
<a class="footer__link" href="tel:016-708-212" | ||
>016-708-212</a | ||
><br /> | ||
<a | ||
class="footer__link" | ||
href="mailto:[email protected]" | ||
>[email protected] | ||
</a> | ||
</p> | ||
</address> | ||
</div> | ||
|
||
<nav class="nav-col"> | ||
<p class="footer__heading">Services</p> | ||
<ul class="footer__nav"> | ||
<li> | ||
<a class="footer__link" href="pages/service.html" | ||
>Web Development</a | ||
> | ||
</li> | ||
<li> | ||
<a class="footer__link" href="pages/service.html" | ||
>UI/UX Design</a | ||
> | ||
</li> | ||
<li> | ||
<a class="footer__link" href="pages/service.html" | ||
>Graphics Design</a | ||
> | ||
</li> | ||
<li> | ||
<a class="footer__link" href="pages/service.html" | ||
>Digital Marketing</a | ||
> | ||
</li> | ||
</ul> | ||
</nav> | ||
|
||
<nav class="nav-col"> | ||
<p class="footer__heading">Company</p> | ||
<ul class="footer__nav"> | ||
<li> | ||
<a class="footer__link" href="pages/about.html" | ||
>About Us</a | ||
> | ||
</li> | ||
<li> | ||
<a class="footer__link" href="pages/blog.html" | ||
>Our Blog</a | ||
> | ||
</li> | ||
<li> | ||
<a class="footer__link" href="#">Press Media</a> | ||
</li> | ||
<li><a class="footer__link" href="#">Careers</a></li> | ||
</ul> | ||
</nav> | ||
|
||
<nav class="nav-col"> | ||
<p class="footer__heading">Resources</p> | ||
<ul class="footer__nav"> | ||
<li> | ||
<a class="footer__link" href="#">Newsletter</a> | ||
</li> | ||
<li> | ||
<a class="footer__link" href="#">Help Center</a> | ||
</li> | ||
<li> | ||
<a class="footer__link" href="#">Privacy & Terms</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</div> | ||
</footer> | ||
|
||
<script defer src="js/script.js"></script> | ||
<script | ||
|