Team
Resources

Web
BCIT Logo
Home | About | Services | Resources


Overview
Publishing Standards
Web Tools Software Tool Kit bullet
HTML Reference bullet
Image Library bullet
CGI Library bullet
Writing Tips bullet


FAQs


TEMPLATES


Coming soon!


    HTML - Quick Reference


    HTML documents are plain-text (also known as ASCII) files can be created using any text editor (e.g., Emacs or vi on UNIX machines; SimpleText on a Macintosh; Notepad on a Windows machine). You can also use WYSIWYG editor or word-processing software.

    Every HTML document should contain certain standard HTML tags. Each document consists of head and body text. The head contains the title, and the body contains the actual text

    Required elements are shown in this sample document:

        <html>
        <head>
        <TITLE>A Simple HTML Example </TITLE>
        </head>
        <body>
        <H1> Learn HTML </H1>
        <P>This is the first paragraph.</P>
       
        </body>
        </html>
    

    The required elements are the <html>, <head>, <title>, and <body> tags (and their corresponding end tags).

    HTML Resources



top of the page
    Copyright © 1996-1999 BCIT. All Rights Reserved.
    | Legal Notices | Feedback |

    Last modified on Wednesday, 27-Oct-1999 16:08:47 PDT