<!DOCTYPE html> <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> <!-- Example from Week 6 Lecture 1, styled by our first CSS external style sheet! by: Sharon Tuttle last modified: 2026-02-24 you can run this using the URL: https://nrs-projects.humboldt.edu/~st10/s26cs328/328lect06-1/328lect06-1.html --> <head> <title> S26 CS 328 Week 6-1 CSS play </title> <meta charset="utf-8" /> <link href="https://nrs-projects.humboldt.edu/~st10/styles/normalize.css" type="text/css" rel="stylesheet" /> <!-- adding this link element to also style this using 328lect06-1.css that is in the same directory as this document --> <link href="328lect06-1.css" type="text/css" rel="stylesheet" /> </head> <body> <h1> CSS Atrocities </h1> <p> Looky, I'm a paragraph! </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>