<!DOCTYPE html> <html> <!-- in-class examples from Week 3 Lecture by: Sharon Tuttle last modified: 2-6-13 --> <head> <title> More HTML playing </title> <meta charset="utf-8" /> </head> <body> <h1> More playing with HTML </h1> <p> This is a link to <a href="http://www.w3c.org"> W3C</a>. </p> <p> <a href="http://www.linux.org/"> <img src="linux-penguin.jpg" alt="Linux penguin" /> </a> </p> <h2> here are some colors </h2> <ul> <li> red </li> <li> blue </li> <li> white </li> </ul> <h2> here are some colors </h2> <ol> <li> red </li> <li> blue </li> <li> white </li> </ol> <dl> <dt> HTML </dt> <dd> HyperText Markup Language </dd> <dt> XML </dt> <dd> eXtensible Markup Language </dd> </dl> <p> The < operation results in a boolean value in many programming languages. </p> <pre><code> for (int i=0; i<3; i++) { cout << "Hello world!" << endl; } </code></pre> <table> <caption> Colors and RGB values </caption> <tr> <th> Color </th> <th> Red value </th> <th> Green value </th> <th> Blue value </th> </tr> <tr> <td> Red </td> <td> 255 </td> <td> 0 </td> <td> 0 </td> </tr> </table> <hr /> <p> <a href="http://validator.w3.org/check/referer"> Validate this HTML5 page </a> </p> <p> For full credit, this page must also pass the tests at <a href="http://lint.brihten.com/html/"> http://lint.brihten.com/html/ </a> when its URL is entered (and without modifying the default options). </p> </body> </html>