-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #128 from KirillKapteily/Kirill-footer
Fixed styles
- Loading branch information
Showing
3 changed files
with
129 additions
and
49 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,56 +1,57 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1.0" /> | ||
<title>Yacht Adventures</title> | ||
<link | ||
rel="stylesheet" | ||
href="footer.scss" /> | ||
</head> | ||
<body> | ||
<footer class="footer"> | ||
<div class="footer__container"> | ||
<div class="footer__logo"> | ||
<span class="footer__logo icon">⛵</span> | ||
<span class="footer__text">YACHT ADVENTURES</span> | ||
</div> | ||
|
||
<ul class="footer__menu"> | ||
<li><a href="#" class="footer__link">ABOUT</a></li> | ||
<li><a href="#" class="footer__link">YACHTS</a></li> | ||
<li><a href="#" class="footer__link">REVIEWS</a></li> | ||
</ul> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Yacht Adventures</title> | ||
<link rel="stylesheet" href="footer.scss" /> | ||
</head> | ||
|
||
<div class="footer__social"> | ||
<h4 class="footer__social-title">WE IN SOCIAL</h4> | ||
<div class="footer__icons"> | ||
<a href="#" class="footer__social-link"> | ||
<img | ||
src="./img/jpg/facebook.jpg" | ||
alt="Facebook" /> | ||
</a> | ||
<a href="#" class="footer__social-link"> | ||
<img | ||
src="./img/jpg/instagram.jpg" | ||
alt="Instagram" /> | ||
</a> | ||
<a href="#" class="footer__social-link"> | ||
<img | ||
src="./img/jpg/youtube.jpg" | ||
alt="YouTube" /> | ||
</a> | ||
</div> | ||
</div> | ||
<body> | ||
<footer class="footer"> | ||
|
||
<div class="footer__container"> | ||
<hr class="hr"> | ||
<div class="footer__logo"> | ||
<span class="footer__logo icon">⛵</span> | ||
<span class="footer__text dm-sans">YACHT ADVENTURES</span> | ||
</div> | ||
|
||
<div class="footer__bottom"> | ||
<p>2023. Yacht Adventures</p> | ||
<p><a href="#" class="footer__privacy">Privacy Policy</a></p> | ||
<ul class="footer__menu"> | ||
<li><a href="#" class="footer__link dm-sans">ABOUT</a></li> | ||
<li><a href="#" class="footer__link dm-sans">YACHTS</a></li> | ||
<li><a href="#" class="footer__link dm-sans">REVIEWS</a></li> | ||
</ul> | ||
|
||
<div class="footer__social"> | ||
<h4 class="footer__social-title dm-sans">WE IN SOCIAL</h4> | ||
<div class="footer__icons"> | ||
<a href="#" class="footer__social-link"> | ||
<svg class="fotter__icon"> | ||
<use href="../img/footer/symbol-defs.svg#icon-facebook" width="40" height="40"></use> | ||
</svg> | ||
</a> | ||
<a href="#" class="footer__social-link"> | ||
<svg class="fotter__icon"> | ||
<use href="../img/footer/symbol-defs.svg#icon-instagram" width="40" height="40"></use> | ||
</svg> | ||
</a> | ||
<a href="#" class="footer__social-link"> | ||
<svg class="fotter__icon"> | ||
<use href="../img/footer/symbol-defs.svg#icon-youtube" width="40" height="40"></use> | ||
</svg> | ||
</a> | ||
</div> | ||
</div> | ||
</footer> | ||
</body> | ||
</html> | ||
</div> | ||
|
||
<div class="footer__bottom"> | ||
<p class="footer__cop dm-sans">2023. Yacht Adventures</p> | ||
<p><a href="#" class="footer__privacy dm-sans">Privacy Policy</a></p> | ||
</div> | ||
<div class="decor__footer"> </div> | ||
</footer> | ||
</body> | ||
|
||
</html> |
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