generated from goitacademy/vanilla-app-template
-
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 #2 from ElizabethBil/page-header
Update header.html
- Loading branch information
Showing
1 changed file
with
58 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,58 @@ | ||
|
||
<header class="page-header"> | ||
<div class="header-container"> | ||
<nav class="header-navigation"> | ||
<a href="./index.html" class="header-nav-logo"> | ||
<svg class="header-logo-icon" width="44" height="39"> | ||
<use href="./img/icons.svg#icon-logo"></use> | ||
</svg> | ||
</a> | ||
<ul class="header-nav-list"> | ||
<li class="header-nav-list-item"> | ||
<a href="#" class="header-nav-link">ABOUT US</a> | ||
</li> | ||
<li class="header-nav-list-item"> | ||
<a href="#" class="header-nav-link">OUR COLLECTION</a> | ||
</li> | ||
<li class="header-nav-list-item"> | ||
<a href="#" class="header-nav-link">CUSTOMER ORDER</a> | ||
</li> | ||
<li class="header-nav-list-item"> | ||
<a href="#" class="header-nav-link">TESTIMONIALS</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
<address class="header-address"> | ||
<a href="tel:+380684439426" class="header-address-link" | ||
>+380 (68) 443-94-26 | ||
</a> | ||
</address> | ||
<ul class="header-socials-list"> | ||
<li class="header-socials-item"> | ||
<a href="#" class="header-socials-link"> | ||
<svg class="header-socials-icon" width="28" height="28"> | ||
<use href="./img/icons.svg#icon-facebook"></use> | ||
</svg> | ||
</a> | ||
</li> | ||
<li class="header-socials-item"> | ||
<a href="#" class="header-socials-link"> | ||
<svg class="header-socials-icon" width="28" height="28"> | ||
<use href="./img/icons.svg#icon-instagram"></use> | ||
</svg> | ||
</a> | ||
</li> | ||
<li class="header-socials-item"> | ||
<a href="#" class="header-socials-link"> | ||
<svg class="header-socials-icon" width="28" height="28"> | ||
<use href="./img/icons.svg#icon-youtube"></use> | ||
</svg> | ||
</a> | ||
</li> | ||
</ul> | ||
<button class="header-button"> | ||
<svg class="header-button-icon"> | ||
<use href="./img/icons.svg#icon-navigation"></use> | ||
</svg> | ||
</button> | ||
</div> | ||
</header> |