Dasmoto's Arts & Crafts: Review and Feedback

Hello all,

This is my first off-platform practice project and would appreciate some feedback from the community.

Thanks. :slightly_smiling_face:

Link to project description: Dasmoto’s Arts & Crafts

<!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">
        <link href="./resources/css/index.css" rel="stylesheet">
        <title>Dasmoto's Arts & Crafts</title>
    </head>
    <body>
        <header>
            <h1>Dasmoto's Arts & Crafts</h1>
            <!-- Navagation Bar -->
            <nav>
                <ul>
                    <li><a href="">Home</a></li>
                    <li><a href="">About</a></li>
                    <li><a href="">Contact</a></li>
                </ul>
            </nav>
        </header>
        <main>
            <!-- Brushes Section -->
            <div id="brushes">
                <h2>Brushes</h2>
                <img src="./resources/images/hacksaw.webp" alt="A pile 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. <span class="price">Starting at $3.00 / brush.</span></p>
            </div>
            <!-- Frames Section -->
            <div id="frames">
                <h2>Frames</h2>
                <img src="./resources/images/frames.webp" alt="A pile of 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 class="price">Starting at $2.00 / frame.</span></p>
            </div>
            <!-- Paint Section -->
            <div id="paint">
                <h2>Paint</h2>
                <img src="./resources/images/finnish.jpeg" alt="Tubes of paint on a table">
                <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 class="price">Starting at $5.00 / tube.</span></p>
            </div>
        </main>
        <footer>
            <h4>Website created by Michael</h4>
        </footer>
    </body>
</html>
* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

a {
    color: black;
    text-decoration: none;
}

body {
    background-image: url("../images/pattern.webp");
    background-size: 100%;
}

div {
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    float: left;
    height: 550px;
    overflow: auto;
    width: 33.33%;
}

footer {
    margin: 600px 0 50px;
}

h1 {
    color: khaki;
    font-size: 100px;
    font-weight: bold;
    margin: 20px 10px 10px;
    padding: 10px 10px;
    text-align: center;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

h2 {
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin: 10px 10px;
    padding: 10px 10px;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

h3 {
    text-align: center;
    margin: 10px 10px;
    padding: 10px 10px;
}

h4 {
    color: khaki;
    text-align: center;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

img {
    border: 2px solid black;
    display: block;
    margin: 0 auto;
}

p {
    font-size: 18px;
    margin: 10px 10px;
    padding: 10px 10px;
    text-align: justify;
}

#brushes {
    background-color: mediumspringgreen;
}

#frames {
    background-color: lightcoral;
}

#paint {
    background-color: skyblue;
}


.price {
    color: blue;
    font-weight: bold;
}

nav ul {
    
    text-align: center;
  }

nav ul li{
    background-color: khaki;
    border: 1px solid black;
    display: inline-block;
    margin: 10px 10px 20px;
    padding: 10px 10px;
}

nav ul li:hover {
    background-color: white;
}
1 Like