Hi, as you can guess from my post title im a complete noob, been learning html for a whole 2 days now. Anyway, ive been looking for an answer to a simple question but cant find it anywhere. Im making a test layout page using css to learn how it all works but I would like to know how to center the navbar. Ive checked google but cant find anything thats not too advanced for my level.
Thanks alot in advance
HTML:
<!-- Put Doctype Here -->
<html>
<head>
<!-- Link To Style Sheet -->
<link rel="stylesheet" type="text/css" href="Stylesheet.css" />
</head>
<body>
<!-- Header -->
<center><img src="Header.png" height="100" width="1240"></center>
<!-- Navigation Bar -->
<li><a href="????.html">Nav Bar 1</a></li>
</ul>
<!-- Line Break -->
<br/>
<!-- Main Headline -->
<h1>Headline 1</h1>
</body>
</html>
CSS:
/* Navigation Bar */
ul
{
list-style-type:none;
margin:0;
padding:0;
overflow:hidden;
}
li
{
float:left;
}
a:link,a:visited
{
font-family:Arial;
font-weight:bold;
display:block;
width:120px;
color:#FFFFFF;
background-color:#000000;
text-align:center;
padding:4px;
text-decoration:none;
}
a:hover,a:active
{
background-color:#808080;
}
/* Main Headline */
h1
{
font-family:Arial;
color:#000000;
text-align:center;
}
PS. please ignore all the labels, its the only way i can remember what things are