HTML: LISTS & DOWNLOAD LINKSLists are floating somewhere between formatting and special characters. If you want to make a list with bullets, you would use the <ul></ul> tag, where "ul" stands for "unstructured list". Eash item on the list takes its own tag, <li></li>, for, you guessed it, "list item." Look at this list with the code next to it :
If you want to make an "ordered list" (or numbered list) the code would be the same, except the tag would be <ol></ol>:
HTML: CREATING LINKS FOR DOWNLOADThis is so simple: the code for creating progressive downloads of audio or video is the same as those going from page to page. Look at the download links on the home page of this eportfolio site: the code looks like this: <a href="http://www.dreamhand.net/depts/eportfolio/mp3/creed_leadon.mp3"> • MP3 Link: Download Syrupy Piano Music</a><br /> These have absolute URLs that lead to .mp3 and .mov files in folders called "mp3" and "video", respectively. User clicking on the links downloads the files. NOTE: look at • -- that is the "special character" code for a bullet: "•" |