First Submission for Review. Also, first time using forums. I would love some feedback on what I could add.
HTML
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dasmoto's Arts & Crafts</title>
<link rel="stylesheet" href="./resources/css/style.css">
Dasmoto's Arts & Crafts
<h2 id="brushes">Brushes</h2>
<img src="C:\Projects\Dasmoto's_Arts_&_Crafts\image\hacksaw.webp" alt="stack of hacksaw brushes">
<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. Avilable in different sizes. <strong>Starting at $3.00 / brush.</strong></p>
<h2 id="frames">Frames</h2>
<img src="C:\Projects\Dasmoto's_Arts_&_Crafts\image\frames.webp" alt="multi-colored picture 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. <strong>Starting at $2.00 / frame.</strong></p>
<h2 id="paint">Paint</h2>
<img src="C:\Projects\Dasmoto's_Arts_&_Crafts\image\finnish.JPEG" alt="paint finnishes">
<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. <strong>Starting at $5.00 / tube.</strong></p>
CSS
h1 {
font-family: Helvetica;
font-size: 100px;
font-weight: bold;
color: khaki;
text-align: center;
background-image: url("https://content.codecademy.com/courses/freelance-1/unit-2/pattern.jpeg");
background-color: white;
}
h2 {
font-family: Helvetica;
font-size: 32px;
font-weight: bold;
color: white;
}
h3 {
font-family: Helvetica;
}
#brushes {
background-color: mediumspringgreen;
}
#frames {
background-color: lightcoral;
}
#paint {
background-color: skyblue;
}
strong {
font-family: Helvetica;
font-weight: bold;
color: blue;
}