Session 7: Introducing CSS
HTML so far The Basics <html> <head> <title></title> </head> <body> </body> </html> Headings <h1> .... </h1> <h2> .... <h2> <h3> .... </h3> <h4> .... </h4> <h5> .... </h5> <h6> .... </h6> Paragraphs <p>....</p> Breaks <br /> Lines <hr /> Lists <ol> .... </ol> <li> .... </li> <ul> .... </ul> Images <img src="path/filename" height="nnn" width="nnn" alt="corporate logo"> Attributes id title class style id="value" title="value" class="value" style="value" Tables <table> </table> Use to define the table <tr> </tr> used for each row in the table <th> </th> Table Header - this makes the text bold <td> </td> table data is used to incl...