This is the main.
This is the "Tip of the day" box.
- HTTP for HTML Authors, Part III
- We examine two of the most important functions of HTTP that HTML authors will be interested in: redirecting and form submission. By Stephanos Piperoglou. 0316
- HTTP for HTML Authors, Part III
- We examine two of the most important functions of HTTP that HTML authors will be interested in: redirecting and form submission. By Stephanos Piperoglou. 0316
This is the main2.
- HTTP for HTML Authors, Part III
- We examine two of the most important functions of HTTP that HTML authors will be interested in: redirecting and form submission. By Stephanos Piperoglou. 0316
- HTTP for HTML Authors, Part III
- We examine two of the most important functions of HTTP that HTML authors will be interested in: redirecting and form submission. By Stephanos Piperoglou. 0316
...
<style>
body {
margin:9px 9px 0 9x;
padding:0;}
#level0 {
background:#FC0;
width:100%;}
#level1 {
margin-left:143px;
padding-left:9px;
background:#FFF;}
#level2 {
background:#FFF3AC;
position:relative;
width:inherit;}
#main {
margin-right:9em;
padding-right:9px;
background:#FFF;}
#topBar{
background:#FC0;}
#advBar{
background:#FFF3AC;}
#tipDay{
float:right;
width:175px;
background:#FFF3AC;
position:relative;}
#lftBar {
position:absolute;
width:143px;
top:9px;
left:9px;}
#rgtBar {
position:absolute;
width:9em;
top:0;
right:0;}
#main h1 {
margin:0;
padding-left:.3em;
font:1.25em Verdana,Helvetica,Arial;
color:#609;
background:#FC0;}
#main dt {
font-weight:bold;
font-size:120%;
margin-top:.8em}
#rgtBar h3 {
margin:0;
padding:3px;
background:#FC0;
font-weight:bold;
font-size:1em;
text-align:center;}
#topBar form {
float:right;
width:10.5em;
text-align:right;}
</style>
...
<body>
<div id="lftBar">
The WebReference logo goes ...
</div>
<div id="level0">
<div id="level1">
<div id="topBar">
<form method=get action="">
<input type="text" name="query" size="12">
<input type="submit" value="Search">
</form>
This is the top navigation bar.
<div id="advBar">
This is the advertisement bar.
</div>
</div>
<div id="level2">
<div id="rgtBar">
<h3>Newsletters</h3>
Here goes a form to ...
<h3>Experts</h3>
...
</div>
<div id="main">
<h1>This is the main.</h1>
<div id="tipDay">
This is the "Tip of the day"...
</div>
<dl>
<dt>HTTP for HTML Authors, Part III</dt>
<dd>We examine two of the ...</dd>
...
</dl>
<h1>This is the main2.</h1>
...
The code you are reading.
</div>
</div>
</div>
</div>
</body>
...