http://www.geocities.com/lucky506/lists.htm
ã2000 by Richard Edward Gordon. Duplication prohibited withoutout author’s permission. [email protected]
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
<HTML> <HEAD> <TITLE>Making Lists Using HTML</TITLE> </HEAD> <BODY> <BASEFONT SIZE="4"> <H1>Ordered List</H1> <H2>Hobbies</H2> <OL> <LI>Kayaking</LI> <LI>Photography</LI> <LI>Bicycling</LI> <LI>Gardening</LI> <LI>Traveling</LI> </OL> <H1>Unordered List</H1> <H2>Officers</H2> <UL> <LI>President, William Johnson</LI> <LI>Vice President, Mary Fox</LI> <LI>Treasurer, Cary Higgs</LI> <LI>Secretary, Martha Willis</LI> </UL> <H1>Nested List</H1> <H2>Diet Club Progress Record</H2> <OL> <LI>William A., 743-9898</LI> <UL> <LI>Starting weight 199</LI> <LI>Leaving weight 156</LI> </UL> <LI>Carol C., 454-2344</LI> <UL> <LI>Starting weight 147</LI> <LI>Leaving weight 122</LI> </UL> <LI>Waldo F., 453-8745</LI> <UL> <LI>Starting weight 177</LI> <LI>Leaving weight 165</LI> </UL> <LI>Tina H., 453-8966</LI> <UL> <LI>Starting weight 202</LI> <LI>Leaving weight 123</LI> </UL> </OL> <H1>Definition List</H1> <H2>Grading Criteria</H2> <DL> <DT>Outstanding</DT> <DD>90% to 100% test average. All homework
assignments done on time. Looks for chance to give answers in class. Helps
other students having problems.</DD> <DT>Good</DT> <DD>80% to 89% test average. Only missing three or
fewer assignments.</DD> <DT>Passing</DT> <DD>70% to 79% test average. Missing between three
and six homework assignments.</DD> </DL> </BODY> </HTML> |