<!DOCTYPE html> <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> <!-- Examples for CS 328 - Week 3 Lecture 1 - 2026-02-02 by: Sharon Tuttle last modified: 2026-02-02 you can run this using the URL: https://nrs-projects.humboldt.edu/~st10/s26cs328/328lect03-1/328lect03-1.html --> <head> <title> S26 CS 328 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> Examples from CS 328 - Week 3 Lecture 1 </h1> <p> I find the horizontal rule element, <hr />, to be quite useful. HTML also supports Unicode characters, such as interrobang: ‽ </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> <p> <img src="Tux.svg" alt="Larry Ewing's Linux penguin" /> </p> <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>