You are here:  NetStrider » Tutorials » HTMLRef » Commands » HTML «

HTML Reference Guide

Author: Randy D. Ralph.   In place March 1, 1999.   Copyright © 1999 - 2002 NetStrider.   Presented as a public service.

BACK <HTML> Command next

Command Syntax:

<HTML>

    Entire HTML Document

</HTML>

The <HTML> command contains the HTML Document and declares to the Internet and to the browser that the document being loaded is in HTML code.

An HTML Document contains two Document Segments:

A Minimal HTML Document:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
  <HEAD>
    <META http-equiv="Content-Type" content="text/html; 
          charset=iso-8859-1">
    <TITLE>Title and First Header Identical</TITLE>
  </HEAD>
  <BODY>
    <H1>Title and First Header Identical</H1>
  </BODY>
</HTML>
      
Return to Section E:H

Return to the List of Commands
Author: Randy D. Ralph.  In place March 1, 1999.  Copyright © 1999 - 2002 NetStrider.  World Rights reserved.