Navigation menu for WAPKA, WordPress and HTMl and Css

Hello .. This post will show how to add Navigation Menu to your lovely website. This code is Html and CSS. So it works easily on any website. It's not so hard to just code your template below and complete.


 Code
<br />Example<br />/* Add a black background color to the top navigation */<br />.topnav {<br />    overflow: hidden;<br />}</p><p>/* Style the links inside the navigation bar */<br />.topnav a {<br />    float: left;<br />    display: block;<br />    color: #f2f2f2;<br />    text-align: center;<br />    padding: 14px 16px;<br />    text-decoration: none;<br />    font-size: 17px;<br />    background: #009933;<br />}</p><p>/* Change the color of links on hover */<br />.topnav a:hover {<br />    background-color: #ddd;<br />    color: black;<br />}</p><p>/* Add a color to the active/current link */<br />.topnav a.active {<br />    background-color: #4CAF50;<br />    color: white;<br />}</p><div class="topnav" id="myTopnav">  <a href="http://abctrick.ga/">Home</a><br />  <a href="http://abctrick.ga/">ABCTrick.Ga</a><br />  <a href="http://abctrick.ga/">Contact</a><br />  <a href="http://abctrick.ga/">About</a></div><p>
Tags