0 added
0 removed
Original
2026-01-01
Modified
2026-03-09
1
<p>You need to use the tags that you studied in the chapter about the<a>structure of an HTML document</a>. Refer to the sample, the tag structure can be understood from the captions for the blocks.</p>
1
<p>You need to use the tags that you studied in the chapter about the<a>structure of an HTML document</a>. Refer to the sample, the tag structure can be understood from the captions for the blocks.</p>
2
<p>This additional version of the<a>challenge</a>is designed to reinforce your skills in creating the structure of an HTML document.</p>
2
<p>This additional version of the<a>challenge</a>is designed to reinforce your skills in creating the structure of an HTML document.</p>
3
<p><strong>Solution</strong></p>
3
<p><strong>Solution</strong></p>
4
<p>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.</p>
4
<p>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.</p>
5
<!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>
5
<!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>