Dasmoto's Project review

Hi All,

I have just completed Dasmoto’s Arts & Crafts projects. Any feedback will be much appreciated in order for me to improve.

<!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="resourses/css/index.css" type="text/css" rel="stylesheet">
    </head>

    <body>
        <header>
            <h1>Dasmoto's Arts & Crafts</h1>
        </header>

        <main>
            <!--Brushes-->
            <section>
                <h2 id="brushes">Brushes</h2>
                <img src="resourses/images/hacksaw.webp" alt="Image 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. Available in different sizes.<strong style="color: blue"> Starting at $3.00/brush.</strong>
                </p> 
            </section>


            <!--Frames-->
            <section>
                <h2 id="frames">Frames</h2>
                <img src="resourses/images/frames.webp" alt="Image of painting frames.">
                <h3>Art Frames (assorted)</h3>
                <p>Assorted frames made of different materials, including MDF, birchwood, and PDE. Select frames
                    can be sanded and painted according to your needs.<strong style="color: blue"> Starting at $2.00/frame.</strong>
                </p>
            </section>

            <!--Paint-->
            <section>
                <h2 id="paint">Paint</h2>
                <img src="resourses/images/finnish.jpeg" alt="Image of clean finnish paints.">
                <h3>Clean Finnish Paint</h3>
                <p>Imported paint from Finland. Over 256 colors available in-store, varying in quantity (1 oz. to 8oz.).
                    Clean Finnish paint microbinds to canvas, increasing the finish and longevity of any artwork.
                    <strong style="color: blue"> Starting at $5.00/tube.</strong>
                </p>
            </section>
        </main>
    </body>
</html>
* {
    font-family: Helvetica;
    font-weight: bold;
}
h1 {
    background-image: url(https://content.codecademy.com/courses/freelance-1/unit-2/pattern.jpeg);
    font-size: 100px;
    color: khaki;
    text-align: center;
}

h2 {
    font-size: 32px;
    color: white;
}

#brushes {
    background-color: mediumspringgreen;
}

#frames {
    background-color: lightcoral;
}

#paint {
    background-color: skyblue;
}

link to project Dasmoto’s Arts and Crafts

Thanks
Emma

Hey. I finished this project recently as well and have a little advice.

you can use a (span) inside your (p) to contain the whole sentence about the prices. This makes it more congruent, and you can then modify the (span) separately with bold text and specific colors.

I don’t know how it worked out with you using (strong) instead, but i tried both ways and using (span) tag made the text flow better