Off-Platform Project: Dasmoto's Arts & Crafts

Hey Guys,

This is my first project :slight_smile:

Have a look at my code and let me know what you think. Any feedback would be amazing.

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/Dasmoto's Arts & Crafts.css" rel="Stylesheet"/>
</head>
<body>
    <h1> Dasmoto's Arts & Crafts </h1>
    <h2 class="Brushes"> Brushes </h2>
    <img src="./resources/images/hacksaw.jpeg" alt="Brushes" >
    <h3> Hacksaw Brushes</h3>
         <p>Made of the highest oak, Hacksaw brushes are known for their weight and ability to hold paint in large amounts. Available in different sizes.<span class="Starting"> Starting at $3.00 / brush.</span></p>
    <h2 class="Frames"> Frames </h2>
    <img src="./resources/images/frames.jpeg" alt="Frames">
    <h3> Art Frames (assorted) </h3>
        <p>Assorted frames made of different materials, including MDF, birchwood, and PDE. Selected Frames can be sanded and painted according to your needs.<span class="Starting">Starting at $2.00 / frame.</span></p>    
    <h2 class="Paint"> Paint </h2>
    <img src="./resources/images/finnish.jpeg" alt="Finnish">
    <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>Starting at $5.00 / tube.</span></p>
</body>
</html>
h1 {
    font-family: Helvetica;
    font-size: 100px;
    font-weight: bold;
    color: khaki;
    text-align: center;
    background-image:URL(../images/pattern.jpeg);
    background-size: cover;
}
.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;
}
h3 {
    font-family: Helvetica;
    Font-weight: Bold;
    text-align: left;
}
span {
    font-family: Helvetica;
    font-weight: bold;
    color: blue;
}
p {
    font-family: Helvetica;
}