6. Font Tags
This is the FONT TAG: <font>.7. Lists
Definitions:This is an unordered list.
| This is an ordered list.
| This is a descriptive list.
|
| This is an unordered list. <ul> <li>unodered item 1</li> <li>unordered item 2</li> </ul> | This is an ordered list. <ol> <li>ordered item 1</li> <li>ordered item 2</li> </ol> | This is a descriptive list. <dl> <dt>Descriptive Title</dt> <dd>descriptive item 1</dd> <dd>descriptive item 2</dd> </dl> |
| Here's what it looks like | Here's the HTML |
| <ol><li>Spoken Languages</li> <ul><li>Spanish</li> <li>French</li> <li>English</li> <dl><dd>Australia</dd> <dd>Britain</dd> <dd>Boston</dd> <dd>Southern U.S.</dd></dl></ul> <li>Computer Languages</li> <ul><li>Basic</li> <li>Dos</li> <li>HTML</li> <li>JavaScript</li></ul></ol> |
|---|
8. Horizontal Rulers
Horizontal Rulers are great for separating material on a webpage. They are very easily spotted when scrolling. That's good, but not everything about them is not good... too many HRs do make a page look outdated and cheap.9. Image Tags
Okay, we can play with images. HTML has certain limitations on images. The web only reads J-PEGs and GIFs. Those stand for the image extensions: ".jpg" and ".gif", respectively.10. Hyperlinks
A hyperlink takes you from where you are to where you want to go. Sometimeswhere you want to go is another page, another site, a new image, a sound, or others...