<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;!DOCTYPE html&gt;
&lt;html lang="en"&gt;
&lt;head&gt;
&lt;title&gt;HTML5 and CSS practice&lt;/title&gt;
&lt;meta charset="UTF-8"&gt;
&lt;meta name="description" content="html5 and CSS practice"&gt;
&lt;meta name="keywords" content="html5, CSS, semantic element"&gt;
&lt;meta name="author" content="My Student"&gt;
&lt;link rel="stylesheet" href="html_5.css"&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div id="allcontent"&gt;
&lt;header&gt;
&lt;h1&gt;My College&lt;/h1&gt;
&lt;/header&gt;
&lt;nav&gt;
&lt;h2&gt;This is for Navigation &lt;/h2&gt;
&lt;p&gt;
&lt;a href="index.html"&gt;Home Page&lt;/a&gt;
&lt;a href="jettie.html"&gt;2nd Web Page&lt;/a&gt;

&lt;/p&gt;
&lt;/nav&gt;
&lt;section&gt;
&lt;h2&gt;This is for Section &lt;/h2&gt;
&lt;article id="london"&gt;
&lt;h3&gt;This is for article 1&lt;/h3&gt;
&lt;h4&gt;London&lt;/h4&gt;
&lt;time datetime="2025-05-25"&gt; 5/25/2025 &lt;/time&gt;
&lt;p&gt;London is the capital city of England. It is the most 
populous city in the United Kingdom, with a metropolitan 
area of over 13 million inhabitants.&lt;/p&gt;
&lt;/article&gt;
&lt;article id="columbus"&gt;
&lt;h3&gt;This is for article 2&lt;h3&gt;
&lt;h4&gt;Columbus&lt;/h4&gt;
&lt;figure&gt;
&lt;img src="images/man.jpg" alt="my image" width="150" height="150"&gt;
&lt;figcaption&gt;Fig1. I am Rocky .&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;/article&gt;
&lt;/section&gt;
&lt;aside&gt;
&lt;h2&gt;This is for aside.&lt;/h2&gt;
&lt;h3&gt;Video example&lt;/h3&gt;
&lt;p&gt;
&lt;video width="320" height="300" controls&gt;
&lt;source src= "small.mp4" type="video/mp4"&gt;
Your browser does not support the video tag.
&lt;/video&gt;
&lt;/p&gt;
&lt;h3&gt;Audio example&lt;/h3&gt;
&lt;p&gt;
&lt;audio controls&gt;
&lt;source src="Allegro.mp3" type="audio/mpeg"&gt;
Your browser does not support the audio element.
&lt;/audio&gt;
&lt;/p&gt;

&lt;/aside&gt;
&lt;footer&gt;
&lt;p&gt;
Contact information:
&lt;a href="mailto:someone@example.com"&gt;
someone@example.com&lt;/a&gt;
&lt;/p&gt;
&lt;address&gt;Written by Jon Doe.
Visit us at:Example.com&lt;br&gt;
Box 564, Disneyland&lt;br&gt;
USA
&lt;/address&gt;
&lt;/footer&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html</pre></body></html>