ctk974 said:
Done!
Lets take a look at ways to itemize lists, link to other documents, and insert multimedia into our pages.
Lists come in two flavors ordered and unordered. Ordered lists flow in sequence while unordered lists have no required, or meaningful, order. For example, a shopping list may be considered as an unordered list of you are not concerened with the order in which you find the items in the store.
The <ol> tag is used to create ordered lists, while the <ul> tag denotes unordered lists.
Lets create two lists one will be a grocery list and the other wil be instructions describing how to check out at the market.
First the grocery list. Creating an unordered list has three steps:
Lets see an unordered list in its entirety:
<ul> <li>Asparigus</li> <li>Milk</li> <li>Tempeh</li> </ul>
Secondly, we will list the checkout steps.
<ol> <li>Unload your shopping basket</li> <li>Greet the cashier</li> <li>Smile at the cute baby next to you in line</li> <li>Pay the cashier</li> <li>Gather your groceries and leave</li> </ol>
Hyperlinks are interconnections between pages and resources on the World Wide Web. Creating hyperlinks requires another aspect of HTML tags called attributes. Attributes are descriptive text elements within the HTML tag enclosures (the < & >). Attributes are associated with values. For example:
<tag attribute="value">
The anchor tag <a> is how we create links both within a document and to external resources. An anchor tag has an attribute called 'href' which stands for hypertext reference. The hypertext reference is the internal or external element to which the link points. For example:
<a href="http://mozilla.org">Mozilla Website</a>
This link points to mozilla.org with the helpful link text "Mozilla Website".
Keeping things interesting: Bacon Salad!
Here's my assignment. I tested, and it works!
<!DOCTYPE html>
<html>
<head>
<meta charset=UTF-8" />
</head>
<body>
<h1>Eleven Principles of Effective Character Education</h1>
<p>
<ul>
<li>Principle 1 - Promotes core values</li>
<li>Principle 2 - Defines "character" to include thinking, feeling, and doing.</li>
<li>Principle 3 - Uses a comprehensive approach.</li>
<li>Principle 4 - Creates a caring community.</li>
<li>Principle 5 - Provides students with opportunities for moral action.</li>
</ul>
<a href="http://www.character.org/more-resources/publications/11-principles/" >Read more</a> >>
</p>
</body>
</html>
I am using Blue Fish as my html editor. How can I view my work in a browser?
Bunny:
If you want to display the code in your browser from Blue Fish, see the attached image.

Another way is to open Windows Explorer (Start button, equipment) and scroll to the folder where you have the html file you want to view. When you find it, situate above the name of this and double click left mouse button. Automatically you visualized, the.Luck!
Right here is the link to my work for this task. Done up in htmlpad.