<!DOCTYPE html> <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> <!-- Week 3 lecture 1 example by: Sharon Tuttle last modified: 2025-02-04 you can run this using the URL: https://nrs-projects.humboldt.edu/~st10/s25cs328/328lect03-1/328lect03-1.html --> <head> <title> Week 3 Lecture 1 Examples </title> <meta charset="utf-8" /> <link href="https://nrs-projects.humboldt.edu/~st10/styles/normalize.css" type="text/css" rel="stylesheet" /> </head> <body> <h1> CS 328 - Week 3 Lecture 1 - Examples </h1> <p>Some examples of special characters: </p> <ul> <li> less-than character: < </li> <li> ampersand character: & </li> <li> interrobang character: ‽ </li> </ul> <p> <img src="Tux.svg" alt="Larry Ewing's Linux Penguin" /> <br /> Tux, originally drawn as a raster image by Larry Ewing in 1996 (source: Wikipedia, <a href="https://en.wikipedia.org/wiki/Tux_(mascot)"> https://en.wikipedia.org/wiki/Tux_(mascot)</a>)</p> <p> <a href="https://www.kernel.org">The Linux Kernel Archives</a> makes the Linux kernel available at no charge. </p> <table> <caption>examples of good Arcata things</caption> <tr><th scope="row">ice cream</th> <td>Arcata Scoop</td></tr> <tr><th scope="row">chocolate</th> <td>Drake's Glen</td></tr> <tr><th scope="row">bagels</th> <td>Los Bagels</td></tr> <tr><th scope="row">quesadillas</th> <td>Taqueria La Barca</td></tr> </table> <footer> <hr /> <p> Validate by pasting .xhtml copy's URL into<br /> <a href="https://validator.w3.org/nu"> https://validator.w3.org/nu </a> or <a href="https://html5.validator.nu/"> https://html5.validator.nu/ </a> </p> </footer> </body> </html>