-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
25 lines (24 loc) · 910 Bytes
/
header.html
File metadata and controls
25 lines (24 loc) · 910 Bytes
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
<nav>
<a href="index.html" class="logo-link">
<div src="index.html" class="logo">
<img src="images/HomeSpaceLogo.png" alt="HomeSpace Logo">
<h1 id="logoNameNav">HomeSpace</h1>
</div>
</a>
<button class="menu-toggle">
<i class="fa-solid fa-list"></i>
</button>
<div class="navRight">
<a href="index.html" id="homeNav"></a>
<a href="pronat.html" id="propertiesNav"></a>
<a href="about.html" id="aboutNav"></a>
<a href="contact.html" id="contactNav"></a>
<div class="langdiv">
<button class="lang-btn" id="langbtn"></button>
<div class="lang-dropdown">
<button onClick="setLang('en')">English</button>
<button onClick="setLang('al')">Shqip</button>
</div>
</div>
</div>
</nav>