<!doctype html><htmllang="en"><!-- recommend to specify page language --><head><!-- head tag can be omitted but not recommended to do so --><metacharset="utf-8"><!-- also define the encoding as early as possible --><title>First Handcrafted HTML5 Page</title><metaname="viewport"content="width=device-width, initial-scale=1.0"><!-- set the viewport for different devices--><linkrel="stylesheet"href="styles.css"><!-- no space around "="; not necessary to include "type" for stylesheet --><scriptsrc="myscript.js"></script><!-- simple syntax for scripts; "type" is not necessary --></head><body><header><h1>This is the Header Level 1</h1><h2>Header Level 2</h2></header><nav><ul><!-- avoid unnecessary blank lines --><li><ahref="">HOME</a></li><li><ahref="">ABOUT</a></li></ul></nav><section><aside><h1>Heading 1 in aside</h1><p>This is a test paragraph</p></aside><article><h1>Heading 1 in article</h1><p>Paragraph in article</p><imgsrc="html5.gif"alt="HTML5"style="width:128px;height:128px"><!-- always add the "alt" attribute, and define image width and height --></article></section><footer><p>Copyright paragraph<br/><ahref="#">Contact</a></p></footer></body></html>