topical media & game development

talk show tell print

basic-css-02-Exercises-exercise2-1-xhtml.htm / htm



  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      <html>
          <head>
              <title>My favorite Movies</title>
              <style type='text/css' media='all'>
                      table {
                          border-width: 0px;
                          width: 500px;
                      }
                      th {
                          background: black;
                          color: white;
                      }
                      #footer {
                          background: darkgray;
                          color: white;
                      }
                         </style>
          </head>
          <body>
              <table>
                  <tr>
                      <th colspan='3'>
                          My Favorite Movies
                      </th>
                  </tr>
                  <tr>
                      <th>
                          Title
                      </th>
                      <th>
                          Actor/Actress
                      </th>
                      <th>
                          Genre
                      </th>
                  </tr>
                  <tr>
                      <td>What Dreams May Come</td>
                      <td>Robin Williams, Annabella Sciorra</td>
                      <td>Drama</td>
                  </tr>
                  <tr>
                      <td>Stir of Echoes</td>
                      <td>Kevin Bacon, Kathryn Erbe</td>
                      <td>Horror</td>
                  </tr>
                  <tr>
                      <td>Groundhog Day</td>
                      <td>Bill Murray, Andie MacDowell</td>
                      <td>Comedy</td>
                  </tr>
              </table>
        </body>
     </html>


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.