CSS is very powerful. Below example demonstrates how simple list element can be converted to a professional looking menu.
<ul>
to Navigation Menu<ul>
<li><a href="https://www.bbc.com/news">BBC</a></li>
<li><a href="https://edition.cnn.com/">CNN</a></li>
<li><a href="https://news.yahoo.com/">Yahoo</a></li>
<li><a href="https://www.msn.com/en-us/news">MSN</a></li>
</ul>
ul {
list-style-type: none;
margin: 0;
padding: 0;
width: 200px;
background-color: #f1f1f1;
}
li a {
display: block;
color: #000;
padding: 8px 16px;
text-decoration: none;
}
/* Change the link color on hover */
li a:hover {
background-color: #555;
color: white;
}