dcsimg
 
Please note, this is a STATIC archive of website webreference.com from 01 Oct 2018, cach3.com does not collect or store any user information, there is no "phishing" involved.
The WebReference logo goes on the top. Some other boxes with news and advertisement follows and then text links to Developer.com.
This is the top navigation bar.
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.

A_Long_String

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:143px;
    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:143px;
    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;}
</style>
...
<body>
  <div id="lftBar">
    The WebReference logo goes ...
  </div>
  <div id="level0">
    <div id="level1">
      <div id="topBar">
        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>
        ...
        <h3>A_Long_String</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>
...