-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.html
34 lines (31 loc) · 1.18 KB
/
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
25
26
27
28
29
30
31
32
33
34
<header>
<nav>
<ul style="background-color: black;">
<li><a style="color: white;" href="https://vikasgoyal.github.io">Home</a></li>
<li><a style="color: white;" href="https://vikasgoyal.github.io/agentic" target="_blank">Agentic AI</a></li>
<li><a style="color: white;" href="https://vikasgoyal.github.io/startups/" target="_blank">Startups</a></li>
<li><a style="color: white;" href="https://vikasgoyal.github.io/genai" target="_blank">Generative AI</a></li>
<li><a style="color: white;" href="https://vikasgoyal.github.io/ecp/" target="_blank">ECP</a></li>
<li><a style="color: white;" href="https://www.linkedin.com/in/vikasgoyal/" target="_blank">LinkedIn</a></li>
</ul>
</nav>
<br>
</header>
<style>
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
}
nav ul li {
margin-right: 20px; /* Adjust the space between links as needed */
}
nav ul li a {
text-decoration: none;
font-size: large;
}
nav ul li a:hover {
text-decoration: underline;
}
</style>