i am working on Old masters code 1-3 but i keep getting an error on my this is for HTML using notepad++ my code: Coding Challenge 1-3 Drawing from the Old Masters The Battle of Anghieari — Leonardo da Vinci Study of a Youth — Jacopo da Pontormo The Nativity — Raphael Head of a Maid — Peter Paul Rubens Head of a Young Woman — Andrea del Sarto Head of a Youth — Titian Warning message that i am trying to resolve : Warning: Section lacks heading. Consider using h2-h6 elements to add identifying headings to all sections. From line 19, column 2; to line 19, column 10 ers↩ ↩
i am working on Old masters code 1-3 but i keep getting an error on my this is for HTML using notepad++
my code:
<!doctype html>
<html lang="en">
<head>
<!--
New Perspectives on HTML5 and CSS3, 8th Edition
Tutorial 1
Coding Challenge 3
-->
<meta charset="utf-8">
<title>Coding Challenge 1-3</title>
<link href="code1-3_styles.css" rel="stylesheet"/>
</head>
<body>
<h1>Drawing from the Old Masters</h1>
<section>
<img src="drawing01.png" alt="Leonardo da Vinci"/>
<footer>The Battle of Anghieari <br />— Leonardo da Vinci</footer>
</section>
<section>
<img src="drawing02.png" alt="Jacopo da Pontormo"/>
<footer>Study of a Youth <br />— Jacopo da Pontormo</footer>
</section>
<section>
<img src="drawing03.png" alt="Raphael"/>
<footer>The Nativity <br />— Raphael</footer>
</section>
<section>
<img src="drawing04.png" alt="Peter Paul Rubens"/>
<footer>Head of a Maid <br />— Peter Paul Rubens</footer>
</section>
<section>
<img src="drawing05.png" alt="Andrea del Sarto"/>
<footer>Head of a Young Woman <br /> — Andrea del Sarto</footer>
</section>
<section>
<img src="drawing06.png" alt="Titian"/>
<footer>Head of a Youth <br />— Titian</footer>
</section>
</body>
</html>
Warning message that i am trying to resolve :
-
Warning: Section lacks heading. Consider using h2-h6 elements to add identifying headings to all sections.
From line 19, column 2; to line 19, column 10
ers</h1>↩ <section>↩ <im
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images