Files
jps/menu_bar

42 lines
763 B
Plaintext
Raw Normal View History

2020-02-14 13:03:16 -06:00
<html>
<header>
2020-02-14 13:18:29 -06:00
<!-- we put all the styling inside the header tags. Normally the styles would go in a separate file -->
2020-02-14 13:03:16 -06:00
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* Change the link color to #111 (black) on hover */
li a:hover {
background-color: #258;
}
</style>
</header>
2020-02-14 13:18:29 -06:00
2020-02-14 13:03:16 -06:00
<body>
2020-02-14 13:18:29 -06:00
<!-- This is our HTML code for the menu itself. -->
2020-02-14 13:03:16 -06:00
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li>
<li style="float:right"><a class="active" href="#about">About</a></li>
</ul>
</body>
</html>