I am trying to move the register button on my nav bar to the left, while having the rest on the left, could somebody help?
my code;
<html>
<head>
<style>
ul {
list-style-type: none;
margin: 5px;
padding: 10px;
overflow: hidden;
background-color:#005EB8;
}
li {
float: right;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #003087;
}
</style>
<body>
<ul>
<li><a href="doctors.html">DOCTOR LOGIN</a></li>
<li><a href="login.html">MHS LOGIN</a></li>
<li><a href="admin.html">ADMIN LOGIN</a></li>
<li><a href="ourdoctors.html">OUR DOCTORS</a></li>
<li><a href="story.html">OUR STORY</a></li>
<li><a href="findus.html">FIND US</a></li>
<li><a href="register.html">REGISTER</a></li>
</ul>
</div>
sorry if my code is really bad