-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
30 lines (30 loc) · 1.12 KB
/
header.html
File metadata and controls
30 lines (30 loc) · 1.12 KB
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
26
27
28
29
30
<header class="site-header">
<div class="container nav-wrap">
<a class="brand" href="/index.html">
<i data-lucide="layers" class="icon icon-brand icon-accent" aria-hidden="true"></i>
<span>The Analytical Stack</span>
</a>
<nav class="site-nav" aria-label="Navigazione principale">
<a href="/index.html">
<i data-lucide="house" class="icon icon-nav icon-sky" aria-hidden="true"></i>
<span>Home</span>
</a>
<a href="blogDeveloping.html">
<i data-lucide="newspaper" class="icon icon-nav icon-violet" aria-hidden="true"></i>
<span>Blog</span>
</a>
<a href="/projects.html">
<i data-lucide="folder-code" class="icon icon-nav icon-emerald" aria-hidden="true"></i>
<span>Projects</span>
</a>
<a href="/about.html">
<i data-lucide="user-round" class="icon icon-nav icon-amber" aria-hidden="true"></i>
<span>About</span>
</a>
<a href="/contact.html">
<i data-lucide="mail" class="icon icon-nav icon-rose" aria-hidden="true"></i>
<span>Contact</span>
</a>
</nav>
</div>
</header>