Dasmoto's Project | Feedback Welcome

Hello! I just finished my first off-platform project and Iā€™m happy about it :smile:
Feedback welcome!
Have an awesome day everyone :computer:

The final look

The folder structure

image 1 (1)

The HTML code

<!DOCTYPE html>
<html lang="en">
<head>
    <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/index.css">
</head>
<body>
    <header>
        <h1>Dasmoto's Arts & Crafts</h1>
    </header>
    <main>
        <div>
            <h2 id="brushes">Brushes</h2>
            <img src="./resources/images/hacksaw.webp" alt="Painting brushes on a table">
            <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.<span>Starting at $3.00 / brush</span></p>
        </div>
        <div>
            <h2 id="frames">Frames</h2>
            <img src="./resources/images/frames.webp" alt="Colorful 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.<span>Starting at $2.00 / frame.</span></p>
        </div>
        <div>
            <h2 id="paint">Paint</h2>
            <img src="./resources/images/finnish.jpeg" alt="Opened paint tubes">
            <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>
        </div>
    </main>
</body>
</html>

The CSS file

* {
    font-family: Helvetica;
}

h1, h2, h3, span {
    font-weight: bold;
}

h1 {
    background-image: url('https://content.codecademy.com/courses/freelance-1/unit-2/pattern.jpeg');
    text-align: center;
    font-size: 100px;
    color: khaki;
}

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

#brushes {
    background-color: mediumspringgreen;
}

#frames {
    background-color: lightcoral;
}

#paint {
    background-color: skyblue;
}

span {
    color: blue;
}
1 Like

Looks good, folders and files are organised nicely. The HTML and CSS look tidy which is good, well done! :+1:

1 Like

Hi @7valkio! Thanks a lot for the comment. I appreciate it very much :smile: :pray: