November 2009
Beginner
496 pages
13h 46m
English
<html>
<head>
<style>
#navigation {
position: absolute;
top: 10px;
left: 50%;
width: 800px;
margin-left: −400px;
text-align: left;
}
#content {
position: absolute;
top: 150px;
left: 50%;
width: 800px;
margin-left: −400px;
text-align: left;
}
body {
text-align: center;
min-width: 600px;
}
</style>
</head>
<body>
<div id="content">content<!-- SEO optimized content text goes here.--></div>
<div id="navigation">navigation<!-- navigational elements, ads go here--></div>
</body>
</html><html>
<head>
<style>
#navigation {
position: absolute;
top: 0px;
left: 400;
width: 200px;
margin-left: −400px;
text-align: left;
}
#content {
position: absolute;
top: 0px;
left: 600;
width: 600px;
margin-left: −400px;
text-align: left;
}
body {
text-align: center;
min-width: 800px;
}
</style>
</head>
<body>
<div id="content">
SEO optimized content text goes here.</div>
<div id="navigation">navigational elements, ads go here</div>
</body>
</html><html> <head> <style> #top { position: absolute; top: 10px; left: 50%; width: 800px; margin-left: −400px; text-align: left; } #left { position: absolute; top: 150px; left: 50%; width: 200px; margin-left: −400px; text-align: left; } #main { position: absolute; top: 150px; left: 50%; width: 600px; margin-left: −200px; text-align: left; } #right { position: absolute; top: 150px; left: 50%; width: 200px; margin-left: 0px; text-align: left; } body { text-align: center; min-width: 800px; } </style> </head> <body> <div id="main">optimized ...