19 lines
329 B
HTML
19 lines
329 B
HTML
|
<!--
|
||
|
<style>
|
||
|
ul {
|
||
|
list-style-type: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
</style>
|
||
|
-->
|
||
|
|
||
|
<!--Continue from: https://dev.to/roccosangellino/how-to-build-a-simple-navbar-with-html-and-css-945-->
|
||
|
|
||
|
<nav class="navbar">
|
||
|
<ul>
|
||
|
<li><b><a href="#">Home</a></b></li>
|
||
|
<li><b><a href="#">History</a></b></li>
|
||
|
</ul>
|
||
|
</nav>
|