jhooga
New Member
I have created this template just by messing around trying to learn CSS and i cant seem to figure out how to get my heading centered. Please help
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css">
</style>
</head>
<body>
<div id="container">
<div id="header">
<h1>Tech Central</h1>
<div class="HorizLinks">
</div>
</div>
<div id="horizontalnav">
<div class="navlinks">
<ul>
<li><a href="http://www.website.com">Home</a></li>
<li><a href="http://www.website.com">Contact</a></li>
<li><a href="http://www.website.com">About</a></li>
</div>
</div>
<div id="leftnav">
<div class="VerticalLinks">
<ul>
<li><a href="#desktops">Desktops</a></li><br>
<li><a href="#laptops">Laptops</a></li><br>
<li><a href="#accessories">Accessories</a></li>
</ul>
</div>
</div>
<div id="body">This is the body</div>
<div id="footer">This is the footer</div>
</div>
</body>
</html>
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css">
</style>
</head>
<body>
<div id="container">
<div id="header">
<h1>Tech Central</h1>
<div class="HorizLinks">
</div>
</div>
<div id="horizontalnav">
<div class="navlinks">
<ul>
<li><a href="http://www.website.com">Home</a></li>
<li><a href="http://www.website.com">Contact</a></li>
<li><a href="http://www.website.com">About</a></li>
</div>
</div>
<div id="leftnav">
<div class="VerticalLinks">
<ul>
<li><a href="#desktops">Desktops</a></li><br>
<li><a href="#laptops">Laptops</a></li><br>
<li><a href="#accessories">Accessories</a></li>
</ul>
</div>
</div>
<div id="body">This is the body</div>
<div id="footer">This is the footer</div>
</div>
</body>
</html>