seven1m.sdf.org

HTML 2.0 Tags

written November 2017

I wanted to play with an old version of HTML and see what it an do. Below are basically all the tags supported by HTML 2.0. This page is valid HTML 2.0.


<h1>H1</h1>

H1


<h2>H2</h2>

H2


<h3>H3</h3>

H3


<h4>H4</h4>

H4


<h5>H5</h5>
H5

<h6>H6</h6>
H6

<pre>preformatted
         text</pre>
preformatted
         text

<address>
  100 N Main<br>
  Bixby, OK 74008
</address>
100 N Main
Bixby, OK 74008

<blockquote>
  This is a quote.
</blockquote>
This is a quote.

<ul>
  <li>unordered</li>
  <li>list</li>
</ul>

<ol>
  <li>ordered</li>
  <li>list</li>
</ol>
  1. ordered
  2. list

<dir>
  <li>directory</li>
  <li>list</li>
</dir>
  • directory
  • list

  • <menu>
      <li>menu</li>
      <li>list</li>
    </menu>
  • menu
  • list

  • <dl>
      <dt>term 1<dd>definition
      <dt>term 2<dd>definition
    </dl>
    term 1
    definition
    term 2
    definition

    <p>
      This is a citation: <cite>Ready Player One</cite>
    </p>

    This is a citation: Ready Player One


    <p>
      This is code: <code>10 PRINT "Hello World!"</code>
    </p>

    This is code: 10 PRINT "Hello World!"


    <p>
      This is keyboard input: <kbd>echo "Hello World!"</kbd>
    </p>

    This is keyboard input: echo "Hello World!"


    <p>
      Let's <em>ephasize</em> and <strong>strongly</strong> mark up text.
    </p>

    Let's ephasize and strongly mark up text.


    <p>
      Similarly, let's <i>italicize</i> and <b>bold</b> some text.
    </p>

    Similarly, let's italicize and bold some text.


    <p>
      This is teletype text: <tt>it's just monospace</tt>
    </p>

    This is teletype text: it's just monospace


    <p>
      <samp>m</samp> is a sample of a letter in the word Tim.
    </p>

    m is a sample of a letter in the word Tim.


    <p>
      <var>x</var> is the variable in <code>x = 15</code>.
    </p>

    x is the variable in x = 15.


    <p>
      Here is an anchor: <a href="http://sdf.org" title="SDF">sdf.org</a>
    </p>

    Here is an anchor: sdf.org


    <p>
      A line break<br>
      moves to the next line.
    </p>

    A line break
    moves to the next line.


    <form method="GET">
      <p>Hidden: <input name="hidden" type="hidden" value="hidden"></p>
      <p>Name: <input name="name" type="text"></p>
      <p>Password: <input name="password" type="password"></p>
      <p>Checkbox: <input name="checkbox" type="checkbox"></p>
      <p>Radio: <input name="radio" value="1" type="radio"> <input name="radio" value="2" type="radio"></p>
      <p>Image form element (submits form with coordinates of click):<br><input type="image" name="image" src="sdf.png"></p>
      <p>
        Select:
        <select name="select">
          <option>option 1
          <option>option 2
          <option>option 3
        </select>
      </p>
      <p>textarea: <textarea name="textarea" rows="3" cols="80"></textarea></p>
      <p>Reset: <input type="reset" value="reset"></p>
      <p>Submit: <input type="submit" value="submit"></p>
    </form>

    Hidden:

    Name:

    Password:

    Checkbox:

    Radio:

    Image form element (submits form with coordinates of click):

    Select:

    textarea:

    Reset:

    Submit:


    <hr> makes a horizontal rule:


    <p>Image:<br><img src="sdf.png"></p>

    Image:


    Hosting for this site is provided by

    The SDF Public Access UNIX System