Im quite new to html and i bet i’m missing something but im creating a simple html and css to go along with it. i get 404 whenever i preview my work.
this is the html code:
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Basic Structure</title>
<!-- !CSS -->
<link rel="stylesheet" href="/fbtab/fbtab.css">
</head>
<body>
<div id="container">
<header>
<div id="logo"><img src="/fbtab/images/logo.png"/></div>
</header><!-- end header -->
</div><!-- end container -->
<!-- !Javascript - at the bottom for fast page loading -->
</body>
</html>
And this is the css:
html,
container,
header,
body {
width:800px;
height:100%;
min-height:100%;
}
Can someone guide me to the proper way of creating new html page?
i just need a 800px width page and want to put logo and icons for it and a background.
Thank you.
That does not have to do anything with your HTML. A 404 error means that a page does not exist. Maybe the file upload (of your HTML) has failed. Your server cannot find the file you have requested. Check via FTP if your files have been properly uploaded.