Lesson ThreeLets learn next about line breaks <br />, unordered lists <ul>, and ordered lists <ol>. EXERCISE THREE Open up index.htm in Notepad, and add the new code: <html>
NOTE 1. The <br /> tag does not come in pairs - it can be used in any number, including on its own. It can be used in many places, not just inside a paragraph. Quite simply, use it when you need one or more breaks. NOTE 2. The lists include the usual pair of tags<ol></ol> and <ul></ul>, but each list item also has its own pair of tags <li></li>. NOTE 3. H2 is another default style of bold header text, along with h1, h3, h4, etc. How is it looking? Any problems? check that code carefully to see if its identical to the above. |
|
|