Site hosted by Angelfire.com: Build your free website today!
The WebReference logo goes on the top. Some other boxes with news and advertisement follows and then text links to internet.com.
Sitemap · Experts · Tools · Services · Newsletters · About
This is the advertisement bar.

Newsletters

Here goes a form to suscribe to the WebReference newsletter.

Experts

Text links for this section.

Sitemap

Text links for this section.

Reference

Text links for this section.

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
And the HTML code looks like this:
...
<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;
    clear:right;}
  #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;
    margin:0;
    line-height:.7em;}
  #topBar input {font-size:.8em;}
  #topBar b {
    display:block;
    text-align:left;
    font:bold .8em/1.7em Arial,Geneva,sans-serif;}
</style>
...
<body>
  <div id="lftBar">
    The WebReference logo goes ...
  </div>
  <div id="level0">
    <div id="level1">
      <div id="topBar">
        <form method=get action="">
          ...
        </form>
        <b>
          <a href="#">Sitemap</a> &#183;
          <a href="#">Experts</a> &#183;
          <a href="#">Tools</a> &#183;
          <a href="#">Services</av &#183;
          <a href="#">Newsletters</a> &#183;
          <a href="#">About</a>
        </b>
        <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>
...