i am trying to create a navbar from Bootstrap. The name, about,portfolio, contact and more should be in the same line. Except the more on the right, the others should be on the left. However, by my code, all of them are shown in the middle. I tried several way to fix, however, no function. Could you give me some suggestions? Thanks. The code likes follows:
`<body>
<nav class="navbar navbar-inverse" role = "navigation">
<div class = "container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Name</a>
</div>
<ul class="nav nav-pills">
<li class = "active"><a href ="#">ABOUT</a></li>
<li><a href = "#">PORTFOLIO</a></li>
<li><a href = "#">CONTACT</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#"><span class="glyphicon glyphicon-user"></span>Contact</a></li>
</ul>
</div>
</nav>
</body>`