-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.html
24 lines (24 loc) · 932 Bytes
/
header.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<header>
<div class="container header">
<div class="logo">
<a class="logo" href="index.html"><img src="assets/img/logo.png" alt="logo" /></a>
</div>
<div class="menu">
<nav>
<ul>
<li class="header"><a class="nav" href="index.html">MAIN</a></li>
<li class="header"><a class="nav" href="gallery.html">GALLERY</a></li>
<li class="header">
<a class="nav" href="ourprojects.html">PROJECTS</a>
</li>
<li class="header">
<a class="nav" href="ceftifications.html">CERTIFICATIONS</a>
</li>
<li class="header">
<a class="nav" href="contacts.html">CONTACTS</a>
</li>
</ul>
</nav>
</div>
</div>
</header>