Hey, just looking for some feedback on my code and if there is anything I should be doing differently. Thanks.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dasmoto's Arts & Crafts</title>
<link href="./resources/css/index.css" rel="stylesheet">
</head>
<body>
<div>
<h1>Dasmoto's Arts & Crafts</h1>
</div>
<div>
<h2 class="brushes">Brushes</h2>
<img src="/Users/dominicalari/Dasmoto's Arts & Crafts/Resources/hacksaw.jpeg" alt="collection of brushes">
<h4>Hacksaw Brushes</h4>
<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. <strong class="price">Starting at $3.00 / brush.</strong>
</p>
</div>
<div>
<h2 class="frames">Frames</h2>
<img src="/Users/dominicalari/Dasmoto's Arts & Crafts/Resources/frames.jpeg" alt="coloured frames stacked against a wall">
<h4>Art Frames (assorted)</h4>
<p>Assorted frames made of different material, including MDF, birchwood, and PDE. Select frames can be sanded and painted according to your needs. <strong class="price">Starting at $2.00 / frame.</strong></p>
</div>
<div>
<h2 class="paint">Paint</h2>
<img src="/Users/dominicalari/Dasmoto's Arts & Crafts/Resources/finnish.jpeg">
<h4>Clean Finnish Paint</h4>
<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 class="price">Starting at $5.00 / tube.</strong></p>
</div>
</body>
</html>
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?_gl=1*2awl6n*_gcl_au*MjU5MDU2NDc0LjE3MjkwMDA2MDI.*_ga*MTM1MjAwMzcyNy4xNzI5MDcyNzIy*_ga_3LRZM6TM9L*MTczMTU2NjA3OS4zNi4xLjE3MzE1NzE4MjcuMC4wLjA.);
}
h4{
font-family: Helvetica;
}
p{
font-family: Helvetica;
font-size: 16px;
}
.price{
font-family: Helvetica;
font-weight: bold;
color: blue;
}
.brushes{
font-family: Helvetica;
font-size: 32px;
font-weight: bold;
color: white;
background-color: mediumspringgreen;
}
.frames{
font-family: Helvetica;
font-size: 32px;
font-weight: bold;
color: white;
background-color: lightcoral;
}
.paint{
font-family: Helvetica;
font-size: 32px;
font-weight: bold;
color: white;
background-color: skyblue;
}