Interactive online courses HTML Academy
2026-03-09 10:55 Diff

You need to use the tags that you studied in the chapter about the structure of an HTML document. Refer to the sample, the tag structure can be understood from the captions for the blocks.

This additional version of the challenge is designed to reinforce your skills in creating the structure of an HTML document.

Solution

The solution to the challenge will be available in a few minutes. Use it if you encounter difficulties. In the meantime, try to complete the challenge on your own.

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>HTML Document Structure, Reinforcement 5</title> <link rel="stylesheet" href="outlines-extra-challenge-5.css"> <link rel="stylesheet" href="style.css"> </head> <body> <header> <h1>Home</h1> </header> <main> <nav> <p>Menu</p> </nav> <section> <p>Topic 1</p> <p>Topic 2</p> </section> <aside> <p>Additional</p> </aside> </main> <footer> <p>Contacts</p> </footer> </body> </html>