<head> ... </head>
<title> ... </title>
<body> ... </body>
<hx> ... </hx>
These tags are used to create headings. There are six different sizes with <h1> being the largest and <h6> being
the smallest.
<p>
<br>
<hr>
A default grey line is created with just the <hr> tag. To get a little fancier, you can make the line solid black with the tag <hr NOSHADE>. A SIZE and WIDTH option can be added to the <hr NOSHADE> tag. The thickness of a line is specified in this format SIZE="x" as in <hr SIZE="x">. The width is represented by WIDTH="xx%" as in <HR WIDTH="xx%">.
<i> ... </i>
Attributes
<blockquote> ... </blockquote>
<address> ... </address>
<ul> ... </ul>
| <ul> <li>oranges</li> <li>apples</li> <li>pears</li> </ul> |
Would look like: |
|
<dl> ... </dl>
| <dl> <dt>My favorite fruits</dt> <dd>oranges</dd> <dd>apples</dd> <dd>pears</dd> </dl> |
Would look like: |
|
"My favorite fruits" would not be indented whereas oranges, apples, and pears would be indented. In setting up for this tutorial, I used the <dl> and <dd> tags.
If you are going to create a link to a file in another directory, you need to specify where the file is located by doing one of the following.
2. As you start using graphics on your Web pages, you may see a graphic that you want to use on someone else's page. Welcome to the ambiguous world of Internet copyright law. If you do decide to use someone else's, chances are that you will not get in trouble for using the graphic as long as you use it respectfully. However, there are sites on the Web that purposely house icons, bullets, and inline images for public use.
3. Attributes for the IMG tag include:
SRC - The source attribute is a must for this tag. Its value is the URL of the file containing the image that you are placing on-line.
ALIGN - "top", "middle", "bottom", "center", "right", and "left" are the values for this attribute. The "right" and "left" values allow for text to be wrapped around the image.
ALT - This attribute is for those viewers who have browsers that have no graphics capability. With this attribute you need to specify a text string that can be displayed.
BORDER - This attribute allows you to place a border around your image. The value of this attribute is "n", where n stands for a number that represents the thickness of the border, the default = "0"
Getting images off Netscape
Colors
where the xxxxxx stands for the RGB hexadecimal number that specifies a certain color. For example:
Not all colors display correctly in Netscape (and Netscape compatible browsers). A list of the 216 Netscape safe colors and their hexadecimal numbers can be found at:
Other options you have with this tag include :
For example a BODY tag using all of these options looks like the following:
<body bgcolor="#00FFFF" TEXT="#FF00FF" LINK="#855E42" VLINK="#000000" ALINK="#FF6EC7">
This URL will get you to a page of different backgrounds.

| Continuing.... | |
| Less Basic html | Web Design II A mini-seminar |
| Advanced html |
