QUIZ 1 QUIZ 2 ASSIGNMENTS  --- CONTENT ---   Introduction HTML Editors Basic HTML Tags Heading Tags Paragraph Tags Line Break Tag Horizontal Lines Preserve Formatting Links Images Formatting Tables Heading Colspan and Rowspan Backgrounds Height and Width Header, Body, and Footer Lists Unordered List UL Types Ordered List OL Types Div Span Forms Fieldset Legend Label Input Select Datalist Textarea

Introduction to Basic HTML

HTML, or HyperText Markup Language, is a markup language used to describe the structure of a web page. It uses a special syntax or notation to organize and give information about the page to the browser. Elements usually have opening and closing tags that surround and give meaning to content. For example, there are different tag options to place around text to show whether it is a heading, a paragraph, or a list.

For example:

            
<h1>Top level heading: Maybe a page title</h1>

<p>A paragraph of text. Some information we would like to communicate to the viewer. 
This can be as long or short as we would like.</p>

<ol>
    <li>Number one on the list</li>
    <li>Number two</li>
    <li>A third item</li>
</ol>
            
            

Becomes:

Top level heading: Maybe a page title

A paragraph of text. Some information we would like to communicate to the viewer. This can be as long or short as we would like.

  1. Number one on the list
  2. Number two
  3. A third item