Dasmoto's Art Page - Complete

Finished the project as assigned. everything is making sense so far. Well see how it goes the more complex we get /lol
HTML:

<!DOCTYPE html>
<html>
    <head>
        <title>Dasmoto's Arts & Crafts</title>
        <link href="styles.css" type="text/css" rel="stylesheet" >
    </head>
    <body>
    <h1>Dasmoto's Arts & Crafts</h1>
    <div class="item">
        <h2 id="brushes">Brushes</h2>
        <img src="Images/hacksaw.jpeg">
            <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. Availible if different sizes. 
                <span>Starting at $3.00 / brush</span></p>
    </div>
    <div class="item >
        <h2 id="frames">Frames</h2>
        <img src="Images/frames.jpeg">
            <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. 
                    <span>Starting at $2.00 / frame</span></p>
    </div>
    <div class="item>
        <h2 id="paint">Paint</h2>
        <img src="Images/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.
                    <span>Starting at $5.00 / tube</span></p>

    </div>
</body>
</html>

CSS:

/*IDs*/
#brushes {

    background-color: mediumspringgreen;
}

#frames {
    background-color: lightcoral;
}

#paint {
    background-color: skyblue;
}

/*CLASSES*/





/*ELEMENTS*/

h1 {
    font-family: Helvetica;
    font-size: 100px;
    font-weight: bold;
    color: khaki;
    text-align: center;
    background-image: url(Images/pattern.jpeg);
}

h2 {
    font-family: Helvetica;
    font-size: 32px;
    font-weight: bold;
    color: white;
}

span {
    font-family: Helvetica;
    font-weight: bold;
    color: blue;
}


I wish there was a way to see your code visually here in the forum.