You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(Subtlety) Good start. You used ids properly and used it to change the background for the headings. You also did a great job with keeping blocks of code that belong together similarly formatted. However, I would suggest you wrap the similar chunks of code together in a div.
Instead of writing your code like this:
<div id="brushes">
<h2> Brushes </h2>
</div>
<img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-2/hacksaw.jpeg" />
<h3> Hacksaw Brushes </h3>
<p> Made of the highest quality oak, Hacksaw brushes are known for their weight and ability to hold paint in large amounts. Available in different sizes. <span id="price">Starting at $3.00 / brush.</span></p>
Reformat it to look like this:
<div class ="item">
<h2 id="brushes"> Brushes </h2>
<img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-2/hacksaw.jpeg" />
<h3> Hacksaw Brushes </h3>
<p> Made of the highest quality oak, Hacksaw brushes are known for their weight and ability to
hold paint in large amounts. Available in different sizes. <span id="price">Starting at $3.00 /
brush.</span>
</p>
</div>
The text was updated successfully, but these errors were encountered:
(Subtlety) Good start. You used ids properly and used it to change the background for the headings. You also did a great job with keeping blocks of code that belong together similarly formatted. However, I would suggest you wrap the similar chunks of code together in a div.
Instead of writing your code like this:
Reformat it to look like this:
The text was updated successfully, but these errors were encountered: