I've been struggling a bit trying to build a website, particularly with centering my <nav>
tag. Despite reading numerous suggestions like using CSS properties such as margin: 0 auto;
or text-align: center
, nothing seems to be working for me.
Since my CSS file isn't functioning properly, I'll just include the HTML code here:
<nav>
<ul class="nav nav-pills">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="jobs.html">Jobs</a></li>
<li><a href="contactus.html">Contact us</a></li>
</ul>
</nav>
As you can see, I am using Bootstrap and all I want is to center it on the page.