Any feedback on this would be greatly appreciated! I am just starting with more open ended projects. Thanks so much!
<!DOCTYPE html>
<html>
<head>
<title>Dasmoto's Arts & Crafts</title>
<link href="art-supply.css" type="text/css" rel="stylesheet">
</head>
<body>
<header>
<h1>Dasmoto's Arts & Crafts</h1>
</header>
<main>
<section> <!--Brushes-->
<h2 class="brushes">Brushes</h2>
<img src="image-2.webp" alt="Paintbrushes">
<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 class="prices">Starting at $3.00 / brush.</span></p>
</section>
<section> <!--Frames-->
<h2 class="frames">Frames</h2>
<img src="image-3.webp" alt="Wooden art frames">
<h3>Art Frames (assorted)</h3>
<p>Assorted frames made of different material, including MDF, birchwood, and PDE. Select frames can be sanded and painted according to your needs. <span class="prices">Starting at $2.00 / frame.</span></p>
</section>
<section> <!--Paint-->
<h2 class="paint">Paint</h2>
<img src="image-4.webp" alt="paint tubes">
<h3>Clean Finnish Paint</h3>
<p>Imported paint from Finland. Over 256 colors available in-store, varying in quantity (1 oz. to 8 oz.). Clean Finnish paint microbinds to canvas, increasing the finish and longevity of any artwork. <span class="prices">Starting at $5.00 / tube.</span></p>
</section>
</main>
</body>
</html>
CSS Code Here:
h1,
h2,
h3,
p {
font-family: "Helvetica", sans-serif;
}
h1 {
background-image: url(image-1.webp);
font-size: 100px;
font-weight: bold;
color: khaki;
text-align: center;
}
h2 {
font-size: 32px;
font-weight: bold;
color: white;
}
.brushes {
background-color: mediumspringgreen;
}
.frames {
background-color: lightcoral;
}
.paint {
background-color: skyblue;
}
.prices {
font-weight: bold;
color: blue;
}