
Tags which go both at the beginning and end
<TITLE>Basic HTML</TITLE>
This is a level 1 heading
This is a level 2 heading
This is a level 6 heading
Placing these tags around words makes the words bold
Placing these tags around words make the words italicized
You can make the font bigger
<FONT SIZE="-1">You can also make the font smaller</FONT>
You can also make the font smaller
Steve Anderson, Utah State University
...here's the end of one sentence.
This tag allows you to indent material, such as when you might want to "quote" someone.
You can even use a combination of more than one type of tag. This is both bold and italic

Notice that this next line starts after leaving a blank line.

The first tag always looks like this:
<A HREF="??????.html">
The last tag always looks like this:
</A>
The large red <A HREF="dog.html">dog</A> jumped over the fence.
The large red dog jumped over the fence.
Notice that clicking on the word "dog" will take you to a different html file called "dog.html"
It might look like this:
The large red <A HREF="http://www.usu.edu/~communic/dog.html">dog</A> jumped over the fence.
The large red dog jumped over the fence.
This indicates that the protocol is hypertext transfer protocol (http),
the file "dog.html" is located
on a web server with the address: www.usu.edu
and the file is located in a directory called ~communic.
You will need this type of syntax anytime you want to create a link to something off your own site.
<IMG SRC="??????.gif">
This presumes that the image (in this case a "gif"
format image) is located in the same directory as the current html file. Most often the
images are located in a sub-directory of the html directory (the html files are in the "root"
directory). This sub-directory might be called "images".
<IMG SRC="images/??????.gif">

Showing an "Inline" Image
If this is the case, you must change the tag to the following:
Making an Image "Clickable"
To make an inline image clickable, you must place the <IMG SRC="images/??????.gif"> information in between the two anchor tags as in the following:
<A HREF="??????.html">
<IMG SRC="images/??????.gif">
</A>
<A HREF="dog.html">
<IMG SRC="images/setter.gif">
</A>
Below is what it looks like. All you see is the outlined image. Clicking on it takes you to the file "dog.html":
<a href="images/bigsettr.gif">
<img src="images/setter.gif">
</a>
Below is what it looks like. Notice that it looks the same as above. Except this time when you click on it, you will go to another image (bigsettr.gif) instead of the file "dog.html":

Sometimes you want people to be able to click on a word and then be able to send email directly to you from the web page. This is supported by many browsers Suppose you want to have somebody be able to click on your name and send you email. Here's an example:
For more information contact <A HREF="MAILTO:sanderso@cc.usu.edu">Dr. Steve Anderson</A> at Utah State University.
For more information contact Dr. Steve Anderson at Utah State University.
Often this information will be included as part of an address as in the following:
<ADDRESS>For more information on this web site contact
<A HREF="MAILTO:sanderso@cc.usu.edu">Dr. Steve Anderson</A>
at Utah State University.<ADDRESS>
For more information on this web site contact Dr. Steve Anderson at Utah State University

UP to the "Multimedia on the Internet" Class Home Page
For more information about this Web Site contact sanderso@cc.usu.edu