<!DOCTYPE html> <html> <head> <title> HTML5 Example 1 - adding some basic HTML5 tags </title> </head> <body> <h1> LAB EX: Put in at least an h1 heading (and additional if you'd like) </h1> <!-- LAB EX: Put in an HTML comment, too. this is an HTML comment. it can span multiple lines. --> <p> LAB EX: For the Week 3 lab exercise, put a paragraph of your choice into your new HTML5 page. </p> <hr /> <!-- LAB EX: put in at least one horizontal rule as well --> <p> LAB EX: if you haven't put your HTML5 page for this lab exercise in public_html, include me a comment giving me its subdirectory! </p> <p> In this new section, I need to <em>emphasize</em> something. No, <strong>strongly emphasize</strong> something. LAB EX: Go ahead and emphasize or strongly emphasize something in your page (or both if you'd like). </p> <p> <img src="linux-penguin.jpg" width="50" height="50" title="My Linux Penguin borrowed image" alt="A Linux Penguin" /> </p> <hr /> <p> <a href="http://validator.w3.org/check/referer"> Validate this page (and put this for Lab 3 Ex) </a> </p> </body> </html>