my example:
https://etherpad.mozilla.org/TestPage
This course will become read-only in the near future. Tell us at community.p2pu.org if that is a problem.
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 as 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".
my example:
https://etherpad.mozilla.org/TestPage
My example:
https://thimble.webmaker.org/p/fkwg
Traducción al español:
http://p2p4-html5yuichi.blogspot.com/2013/01/listas-y-enlaces.html
Ready with lists and links.
List and links completed
I think this has everything: https://thimble.webmaker.org/p/fjrg
Check out my list here: http://htmlpad.org/lists/
Completed task here: https://etherpad.mozilla.org/Lists
My unordered list, ordered list and hyperlink can be found here: http://htmlpad.org/listsAndLinks/
All can be found here
This section is added at the bottom of my previous code!
My first web page at : http://htmlpad.org/myfirstwebpage/
http://htmlpad.org/traveller/
Here is mine: http://htmlpad.org/WC-ListsandLinks/
Apparently jsfiddle doesn't let me show lists the right way so it's on thimble
https://thimble.webmaker.org/p/o0g
Thimble didn't like it when I nested an ordered list within an ordered list but there aren't any exclamation marks left now so it must be OK? Is it?
Cheers folks. It's great to have so many folk learning together