1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<!DOCTYPE html> <html lang="en"> <head> <title>Block Anchor</title> <meta charset="utf-8"> </head> <body> <header> <a href="http://www.w3.org/TR/html-markup"> <h1>HTML5 Reference</h1> <p>Bookmark this site for a handy HTML5 reference.</p> </a> </header> <main> <p> Website content goes here </p> </main> </body> </html>