An Introduction to the World Wide Web and HTML

 
 

Table of Contents:

 

Early computer networks

Following the successful completion in 1945 of ENIAC, the first electronic computer, a number of more usable computers were built over the next several years. The 1950s was the first decade of growing use of computers in business, government and education. But computers were still very large and very expensive, so it was important to be able to maximize their use.

In the early 1960s, computer engineers figured out how to connect multiple computers together into computer networks, which allowed organizations to share valuable computer resources such as printers and file storage. These networks might connect several computers in a building or even between several buildings in one location, but they could not connect computers that were more than a few hundred meters (yards) apart.

 

The beginning of the Internet

During the cold war era of the 1960s, the U.S. government decided it needed a nation-wide computer network that could help in case of war —and be able to survive a possible nuclear attack! It was developed as a military project by ARPA, the Advanced Research Projects Agency, and so it was called ARPAnet. ARPAnet first connected four university campus networks across the country.

The Internet grew directly out of ARPAnet –and other networks that developed during the next 20 years. The Internet is called “Internet” because it is an interconnected network of smaller networks; it is the Internetwork, or Internet for short.

ARPAnet had several key features:

This decentralized structure was key to ARPAnet’s success. It is also what makes the Internet so wonderfully open today: it is still decentralized, with no main control center and therefore no one company or government in control of it.

During the 1960s, '70s and 80s, more nation-wide networks were developed. In order to ensure that all the computers on all these different networks could successfully exchange information with each other, a common protocol was needed. In 1983, TCP/IP (Transmission Control Protocol/Internet Protocol) was developed and adopted as the protocol for the Internet. (A protocol is a set of rules and procedures for how something works, in this case how computers package, send and receive data back and forth.)

 

Tim Berners-Lee Invents the World Wide Web

No one person invented the Internet; many people worked on developing ARPAnet and other early networks, as well as TCP/IP and other important parts of the Internet. The World Wide Web, on the other hand, actually was invented by one person: a British software engineer named Tim Berners-Lee.

Tim Berners-Lee was working at CERN, the physics research lab in Switzerland, in the 1980s, when he came up with a simple yet powerful idea: “What if there was a way to connect any computer file or document on any computer anywhere in the world with any other file or document anywhere else? And do so easily and intuitively?”How could this be done?

Hypertext had already been invented by someone else. Hypertext allows users to create a link from a word or phrase in one computer document to another document. A “link” is actually a request: it says “Please send me the contents of the file that this link points to.” Berners-Lee took hypertext and made a way to create hyperlinks between any kind of computer file and any other file, even if the other file is on a different computer somewhere else on the Internet. He then developed 4 software tools necessary for a system such as this to work:

  1. URLs: Uniform Resource Locatorsthe scheme for naming and addressing files so that they can be found by other computers when a hypertext link is activated. A website address is its URL.
  2. HTTP: HyperText Transfer protocol: The protocol for computers to communicate to one another these hypertext file requests. Notice that most website addresses begin with http:// —this tells the browser that the file is using the http protocol.
  3. HTML: HyperText Markup Language: a simple “markup language” or code for creating hypertext links and for structuring and formatting documents.
  4. Browser software: software to use to display these html documents. Internet Explorer (“IE”), Netscape Navigator, Opera, Safari, Mozilla and Firefox are the most popular web browsers. (AOL uses its own version of IE browser built in to its software.)

Remember that the World Wide Web is only one part of the Internet. Email, chat, instant messaging, online gaming, telnet and ftp are other important parts of the Internet. (These “parts” are called “services,” and can be thought of as different “lanes” on the “Information Superhighway.”)

There are two things, however, that make the WWW so unique and so powerful:

 

How Does the World Wide Web Work?

A web page is actually a text file. If you look at the “source code” of a web page, all you'll see is a bunch of text. Look carefully and you will see strange codes <inside brackets like this> that surround the actual content (words, pictures, etc.) of the web page. These “tags” are the HTML code that makes a web page look the way it does. The colors you see, the way text looks, the layout of the page, are all determined by the HTML code.

Pictures, audio and video are actually separate files. There are HTML tags that insert these other files into the web pages.

A funny thing about the web is the fact that the same web page may look different on different computers and using different browsers. To understand this unpredictable behavior of what a web page will look like, it is helpful to understand how 4 different things interact and work together: the computer, the web browser, the web page, and the user:

The point to remember, when you are making web pages, is this: not everyone will see the web page the way you do on your machine with the browser you are using. There are still plenty of people using older machines with old hardware and software, fewer colors, old browser versions, etc.

Now let's take a look at HTML itself…


Back to top

An Overview of HTML Basics:

HTML stands for “HyperText Markup Language”. It is the language in which web pages are written. It's called a markup language because you “mark up” the content (words, pictures, etc.) with HTML code in order to make it look the way you want. The <codes inside brackets> are called “tags.” The first word in each tag is the html element. You can also add “attribute-value pairs” to your tags. The hundreds of elements, attributes and values used to make web pages are the language of HTML.

Most html tags are paired, with an opening tag and a closing tag, like this:

<element> bla bla bla </element>

Such as:

<h1>Introduction to HTML</h1>

There are however, a few unpaired tags. A few of the un-paired elements you are likely to use are image (<img>), break (<br>) and horizontal rule (<hr>).

HTML is being replaced with XHTML and XML. These newer languages are much stricter. All tags must be closed in XHTML, and the way you close an unpaired tag is by adding the / at the end of the tag, like this: <img ... />, <br /> and <hr />

All tags can be modified with “attribute-value pairs,” and have the following format:

<element attribute="value">

Such as:

<h1 align="center">Introduction to HTML</h1>

There are literally hundreds of elements, attributes and values. Not all elements can use all attributes; there are rules about which ones are allowed.

Tags can include multiple attribute-value pairs, like this:

<element attribute="value" attribute="value" attribute="value">

Such as:

<img src="images/file.jpg" width="220" height="165" alt="file">

In HTML 4.01, it is acceptable to type html code in CAPITAL letters, but this is changing. XHTML, XML and CSS are stricter, and do not allow capital letters, so it is a good idea to get used to typing all code in lower case letters.

It's possible to have html tags “nested” inside one another. For example, inside a paragraph you can have a link (a href), and inside the link there may be an image. It is important to make sure that all html tags are properly nested, like this:

<p><a href="http://www.google.com"><strong>Click here to go to Google</strong></a></p>

This would be wrong:

<p><a href="http://www.google.com"><strong>Click here to go to Google</strong></p></a>

(Insert paragraph about inline vs. block-level elements…

There is a lot more to learn and understand about HTML, but this should get you started. Now let's learn how to build a web page…


Back to top

The Basic Structure of a Web Page:

Here are the basic HTML tags needed to create a simple web page:

<html>
<head>
<title>
Your title goes here</title>
</head>
<body>

<h1 align="center">Page title goes here</h1>
<p>Text goes here.</p>
</body>
</html>

<html> tells the browser that this file is a web page.
The <head> section is extra code that does not show up on the webpage itself.
<title> is the most common tag put in the head section, but there are many others…
Between <body> and </body> is where all the content of the web page goes.

Now let's look at the elements you are likely to use the most often…


Back to top

Some Commonly Used HTML elements

The most commonly used html elements are the ones described in the “basic web page structure” section above: html, head, title, body, heading and paragraph; those described in the sections below: images, links, lists and tables; and a few others.

The <p> tag is used to define sections of text. Each paragraph will be separated by a space (a blank line). If you want a line break within a paragraph, without a space, use the “break” element: <br />, like this:

<p>Paragraph 1 bla bla bla…</p>

<p>Paragraph 2 bla bla bla…</p>

<p>Paragraph 3 bla bla bla…<br />
Another line still in paragraph 3. Now we end paragraph 3: </p>

The heading tags range from <h1> to <h6>. Each higher number gets smaller, like this:

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Headings should be used to define the “levels of organization” of the content of your web page. Think of it as an outline, with h1 being the Roman Numerals I, II, III, etc. h2 is like the capital A, B, C. h3 is like the 1, 2, 3, etc.

Use the <hr /> tag to insert a horizontal line, as a decorative element or section seperator. Commonly used attributes with hr are: width, size (thickness), color and alignment. Here's an example: <hr align="center" width="60%" size="5" color="red">


Back to top

Content vs. Style, or:
So, you want to add color to your web pages...

As soon as people know how to make a basic web page, they immediately want to add color to their page, or they want to choose particular fonts to display their page. This is understandable, but new web page designers need to be patient and learn a few more things before they can “get fancy” with colors, fonts, etc.

This section is a brief introduction to a very important web design concept, namely that of separating content from style, and provides the “short answer” to the question, “How do I add color to my web page?” Let’s start by making sure we understand content vs. style:

Here's the important point:

   Modern web design and coding is based on the principal of separating content (and the code that defines content) from code that defines the style of a web page.

You should use HTML tags that define what the content is, rather than how you want it to look. ALL CODING THAT DEFINES HOW YOU WANT THE PAGE TO LOOK SHOULD BE DONE WITH CSS! For example, every page should have an <h1>, which is the top heading that defines the topic of the page. You should not use <h1> because you want big bold text; you can make any text big and bold with CSS. Similarly, an <h2> should be a subheading; an <h3> should be sub-sub-heading; don't choose <h2> or <h3> because you want the text to look a certain way. A <p> should be a paragraph; a list of any sort should be coded as a <ul> or a <ol>, and so on.

CSS is like HTML in that you can start using it with just a little bit of knowledge, but to really use it powerfully and effectively, there is a lot to learn! To learn more about CSS, see the CSS section below, or check out any of the many CSS resources that Teacher john lists on his web design resources page. But if you just can’t wait, here’s a quick shortcut to adding color, fonts, etc. to your web page:

For example, to make your <h1> display as red with a white background color, and centered on the webpage, do this:

<h1 style="color:red;background-color:white;text-align:center">HEADING</h1>

The code above will look like this:

HEADING

If you put a style="CSS" attribute-value pair inside the <body> tag, then the CSS will apply to the entire web page. If you put a style="CSS" attribute-value pair inside a <p> tag, then the CSS will apply only to that paragraph. Get it?

There are hundreds and hundreds of possible CSS declarations; it is in fact far more powerful —and also more complicated— than HTML itself. You will have to spend some time learning about CSS and how to use it, if you want to get really fancy with colors, fonts, etc. But it is worth the effort, because this is how you will make your web page “pop” with awesome colors and other styling effects!

This next section is about understanding folder hierarchies and file paths. This is a bit confusing at first, but as stated below, it is essential to understand this if you are going to successfully add images to your web page, or make links from one page to another! So read on, carefully!

 


Back to top

Understanding Folder Hierarchies and File Paths:

Before you can add images or links to your webpage, you need to understand how files are organized into folders, how folders create hierarchies, and how to navigate the paths from one file in a folder to another file in another folder.

A folder —which can also be called a directory— is a place in which files are saved. Folders help you organize your files, so that it's easier to find the files you want. Files should be organized into folders in a logical way: each folder should be “about” one topic, and should have files inside it that are related to that topic.

“Folder hierarchies” refers to the arrangement of folders inside folders inside folders. When you navigate “down” into a folder, then into a folder inside the folder, this is called “drilling down” into the hierachy. When navigating “up” out of folders into the folders that contain them, this is called “climbing up” the hierarchy.

So, a file's location refers to where it is saved, inside which folder (which is inside a folder, inside a folder…). A path is the route you navigate from one file in one location to another file in another location. Hypertext links and inserting images require you to define the path from the web page to the target file —another web page, or an image file, or a website, or whatever…

Here are two ways of describing folder structures:

There are two ways of describing a path:

Now we're ready to write paths, as we would in a hypertext or image source link! Let's use the example above to demonstrate:

  • The general pattern is:
    • foldername/ each time you “drill down” a level;
    • ../ each time you “climb up” a level; and
    • all paths must end with the filename, including the 3 (or 4) letter extension.
  • From one file to another in the same folder:
        e.g. from file (1) or (2) to file (3):  "history.html"
"filename" (no path needed)
  • From one file to another in a subfolder:
        e.g. from file (1), (2) or (3) to file (4):  "images/logo.gif"
"subfoldername/filename"
  • From one file to another in a subfolder of a subfolder:
        e.g. from file (1) to file (7):  "teachers/sbaron/sbaron.html"
"subfoldername/subsubfoldername/filename"
  • From a file in a subfolder up one level:
        e.g. from file (4) to file (2):  "../links.html"
        or from file (7) to file (6):  "../teachers.html"
"../filename"
  • From a file in a sub-subfolder up two levels:
        e.g. from file (7) to file (1):  "../../index.html"
"../../filename"
  • From a file in one subfolder to a file in another subfolder:
        e.g. from file (6) to file (5):  "../images/photo.jpg"
"../subfoldername/filename"
  • From a file in a sub-subfolder up 2 levels then down to a file in another subfolder:
        e.g. from file (7) to file (5):  "../../images/photo.jpg"
"../../subfoldername/filename"
  • And so on…

Back to top

Lists:

There are three kinds of lists in HTML:

  1. Unordered (bulleted) lists;
  2. Ordered (numbered) lists — such as this one; and
  3. Definition lists - like a glossary.

The HTML code for each is very similar:

Unordered Lists
CodeFunctionWhat it looks like
<ul>Begins an unordered list
  • Bacteria
  • Protists
  • Fungi
  • Plants
  • Animals
<li> … </li>Starts and ends a list item
</ul>Ends the unordered list

 

Ordered Lists
CodeFunctionWhat it looks like
<ol>Begins an unordered list
  1. Unix
  2. Linux
  3. Windows
  4. Mac OS
<li> … </li>Starts and ends a list item
</ol>Ends the unordered list

 

Definition Lists
CodeFunctionWhat it looks like
<dl>Begins a definition list
Physical Sciences
Chemistry and physics
Earth Sciences
Geology, hydrology, meteorology and astronomy
Life Sciences
Biology, botany, zoology and ecology
<dt> … </dt>Starts and ends a definition list term
<dd> … </dd>Starts and ends the term's definition
</ul>Ends the definition list

Customizing Ordered and Unordered Lists with CSS

The above examples show the default styles for unordered, ordered and defintion lists. You can also customize your lists with CSS styles, or use image files (.gif or .jpg) as custom bullets, as follows:

Commonly used bullets and the CSS styles to invoke them
Bullet StyleCodeWhat it looks like
Solid Round<ul style="list-style-type:disc">
(Default, so coding not necessary)
  • list item one
  • list item two
  • list item three
Hollow Round<ul style="list-style-type:circle">
  • list item one
  • list item two
  • list item three
Square<ul style="list-style-type:square">
  • list item one
  • list item two
  • list item three

 

Using an image file as a custom bullet
image fileCodeWhat it looks like
WMS Broncos logo - small
logo_sm.gif
<ul style="list-style-image:url(images/logo_sm.gif)">
  • list item one
  • list item two
  • list item three

 

Commonly used numbering styles and the CSS styles to invoke them
Numbering StyleCodeWhat it looks like
Arabic numerals<ol style="list-style-type:decimal">
(Default, so coding not necessary)
  1. list item one
  2. list item two
  3. list item three
Upper Roman<ul style="list-style-type:upper-roman">
  1. list item one
  2. list item two
  3. list item three
Lower Roman<ul style="list-style-type:lower-roman">
  1. list item one
  2. list item two
  3. list item three
Upper Alpha<ul style="list-style-type:upper-alpha">
  • list item one
  • list item two
  • list item three
Lower Alpha<ul style="list-style-type:lower-alpha">
  • list item one
  • list item two
  • list item three


You can also have ordered lists start counting at a number other than one. To do so, add the following code to either the <ul> or <li> tags as follows:

<ul start="n"> (where n is the starting number); or
<li value="n"> (where n is the number of that list item).

Back to top

Links:

There are 4 types of links:

  1. Links between two pages that are part of the same website
  2. Links from one web page to a web page that is part of a different website
  3. Links from one place on a web page to another place (target) on the same web page
  4. An e-mail link that launches your email software and opens a pre-addressed email message

1.   Links between two pages in the same website

HTML Code<a href="path/file.html">Text or image that is the link</a>
ExampleReturn to <a href="../index.html">WMS Homepage</a>
What example looks likeReturn to WMS Homepage

2.   Links from to another website

HTML Code<a href="http://www.google.com">Text or image that is the link</a>
ExampleSearch with <a href="http://www.google.com">Google</a>
What example looks likeSearch with Google

3.   Links from one place on a web page to another place on the same web page

HTML Code for link<a href="#targetname">Text or image that is the link</a>
HTML Code at target<a name="tgargetname"></a> (empty anchor link)
Example<a href="#top">Back to Top</a>
<a name="top"></a>
What example looks likeBack to top

4.   E-mail links

HTML Code<a href="mailto:username@isp.tld">Text or image that is the link</a>
ExampleQuestions? <a href="mailto:taltenberg@salinas.k12.ca.us">E-mail Mr. A.</a>
What example looks likeQuestions? E-mail Mr. A.

Back to top

Adding Images to Your Web Page:

The image tag (<img>) is one of the few unpaired tags in html. There are many attributes that can be used with it, but these four are required or highly recommended:

AttributeExampleReq./Rec.Description
Source:
(src)
src="path/file.jpg"RequiredThis tells the browser where the image file is. Without this attribute the image will not appear.
Alternate text:
(alt)
alt="brief description of image"RequiredThis allows a text message to be displayed if the image file cannot be loaded for any reason. “Page reader” software used by blind and vision-imapired people also read aloud the alt text.
Width:
(width)
width="320"RecommendedThis tells the browser how wide the file is, in pixels (the little dots on the screen). This allows the image and the overall web page to load more quickly.
Height:
(height)
height="120"RecommendedThis tells the browser how tall the file is, in pixels. This also helps the image and overall web page to load more quickly.


Here's an example:

<img src="images/file.jpg" width="220" height="165" alt="This is a picture of a bird">

You can change the size at which an image is displayed by changing the width and height values. Just make sure you don't change the relative proportions, or you'll distort the image!

By default, an image has border = 0. If you want a border to show, just add the attribute-value pair: border="n", where n = pixel width. (CSS also allows for some fancy border cahracteristics, as well as control of each side of the border. See CSS section below for more on this.)

See some examples of altering the size and border of an image.

Image files must be either .gif, .jpg or .png format. (.bmp, .tif, .pict and other graphic file formats will not work.) Photos are usually .jpg; non-photo graphics are usually .gif. Those animated cartoons you see on the web are .gif.

Image file size is an important factor to keep in mind. Files larger than 50 — 100 KB (kilobytes) will increase the loading time of a web page more than is desireable. High resolution photos can be thousands of KB (4 MB = 4000 KB), so be careful! It's best to use PhotoShop or other photo editing software to prepare photos for the web.

Flash animation and multimedia is becoming very popular. Flash is an entirely separate type of file, and the way flash files interact with web pages is also different.


Back to top

Tables:

Overview:

Tables should be used whenever you want to display information in rows and columns —in other words: in a table!

Tables have also been used as a means of creating web page layout designs. Most web pages are designed this way, with tables to create different sections, such as horizontal or vertical nav bar sections, and multiple columns. CSS can also be used for page layout, and this is better, really, because tables should only be used for tables, not for layout. However, CSS layout is complicated, and also “buggy,” which means it often doesn't work the way it should. (It isn't actually the CSS that's buggy; it's the browser software: most browsers —especially Internet Explorer— do not fully or properly implement CSS (i.e. they don't follow the CSS rules), so that even properly coded CSS layout sometimes doesn't work.) We'll discuss table layout more later, but first let's learn how to code the tables themselves.

Basic Table Code:

A table is composed of horizontal rows and vertical columns. Each square in a table is called a cell, but html refers to them as table data (<td>).

The html code is organized row-by-row, cell-by-cell. That is, you define a table 1 row at a time, cell by cell from left to right.

You can "merge" 2 or more cells across a row (with <colspan>) or down a column (with <rowspan>) or both.

You can add attribute-value pairs to a cell (<td>), row (<tr>) or the entire table (<table>).

Start and end a table with <table> and </table>.

Start and end each row with <tr> and </tr>.

Start and end each cell with <td> and </td>.

Attributes can be added, but understand: not all attributes are allowed for each element! Commonly used attributes include:

border use in <table> only
rowspanuse in <td> only
colspanuse in <td> only
alignuse in <table>, <tr> or <td>.
cellpaddinguse in <table> only
cellspacinguse in <table> only

 

Here's a simple example:

<table>
<tr><td>This is cell 1</td><td>This is cell 2</td></tr>
<tr><td>This is cell 3</td><td>This is cell 4</td></tr>
</table>

This will result in a table like this:
This is cell 1This is cell 2
This is cell 3This is cell 4

You can also use <th> instead of <td>. <th> is for table heading, and should be used in the top cell of a column, or the first (left) cell in a row, as a column or row heading. <th> automatically makes the text content bold and aligned center.

So this:

<table>
<tr><th>Heading 1</th><th>Heading 2</th></tr>
<tr><td>This is cell 3</td><td>This is cell 4</td></tr>
</table>

will result in a table like this:
Heading 1Heading 2
This is cell 3 (in which I have added more text,
so you can see the centering of the heading above)
This is cell 4

Table Attributes and Properties: Merging cells with "colspan" and "rowspan:"

Use the attribute "colspan" to make a cell span horizontally two or more columns, like this:

<table>
<tr><td>
Cell 1</td><td>Cell 2</td></tr>
<tr><td colspan="2">
See how cell 3 "spans" across into cell 4's place.</td></tr>
</table>

 

The above code results in a table like this:

Cell 1Cell 2
See how cell 3 "spans" across into cell 4's place. (No cell 4, therefore.)

 

Use the attribute "rowspan" to make a cell span vertically two or more rows, like this:

<table>
<tr><td>
Cell 1</td><td rowspan="2"> See how cell 2 "spans" down into cell 4's place.</td></tr>
<tr><td>
Cell 3</td></tr>
</table>

 

This will result in a table like this:

This is cell 1 See how cell 2 "spans" down into cell 4's place. (No cell 4, therefore.)
This is cell 3

 

You can use both at the same time to create interesting cell arrangements.
Here's the code for a 4 x 4 table, without any rowspan or colspan:

<table border="1" align="center">
<tr><td>Cell 1</td><td>Cell 2</td><td>Cell 3</td><td>Cell 4</td></tr>
<tr><td>Cell 5</td><td>Cell 6</td><td>Cell 7</td><td>Cell 8</td></tr>
<tr><td>Cell 9</td><td>Cell 10</td><td>Cell 11</td><td>Cell 12</td></tr>
<tr><td>Cell 13</td><td>Cell 14</td><td>Cell 15</td><td>Cell 16</td></tr>
</table>

 

The above code will look like this:

Cell 1Cell 2Cell 3Cell 4
Cell 5Cell 6Cell 7Cell 8
Cell 9Cell 10Cell 11Cell 12
Cell 13Cell 14Cell 15Cell 16

 

Now let's make cell 6 merge across to cell 7, and down into cells 10 and 11:

<table border="1" align="center">
<tr><td>Cell 1</td><td>Cell 2</td><td>Cell 3</td><td>Cell 4</td></tr>
<tr><td>Cell 5</td><td colspan="2" rowspan="2">Cell 6...</td><td>Cell 8</td></tr>
<tr><td>Cell 9</td><td>Cell 12</td></tr>
<tr><td>Cell 13</td><td>Cell 14</td><td>Cell 15</td><td>Cell 16</td></tr>
</table>

 

This will look like this:

Cell 1Cell 2Cell 3Cell 4
Cell 5     Cell 6 now "spans" across into cell 7,     
and down into 10 and 11...
Cell 8
Cell 9Cell 12
Cell 13Cell 14Cell 15Cell 16

Aligning text within a cell:

Alignment of many elements in HTML is defined as follows:

The default alignment within a table cell is left middle, as shown below:

This text is aligned
to the left and
in the middle of the cell.
This image is here to create enough height to demonstrate the 'middle' vertical alignment in the cell to the left.
This image is here to create enough cell width to demonstrate the 'left' horizontal alignment above.This cell looks empty...But is it?

 

The next few lines are unfinished, and will look odd and unclear... Please be patient...

 

Change horizontal alignment with <td align="left/center/right"> like this:

CenteredRight
No "align" = left No "align" = left
This will result in a table like this: Centered Right No "align" = left No "align" = left Change vertical alignment with <td valign="top">, <td valign="middle"> or <td valign="bottom">, like this:
Top Middle




Bottom No "align" = middle
This will result in a table like this: Top Middle Bottom No "align" = middle (You will only see this vertical alignment if one or more cells contain enough text to create vertical space. I used
(line break) to create the extra space)

Back to top

Special Characters

Coming soon…


Back to top

CSS: Cascading Style Sheets

Coming soon…


Back to top

Additional Resources:

Coming soon…

  1. An outstanding list of Web Design Resources:
  2. General HTML Tutorials:
  3. bla bla bla...

HTML is a "deep ocean" with lots and lots to learn. But if you take it step-by-step and learn the tags and the rules for using them, you too can learn to make awesome web pages!

Good luck and have fun!