I’m 3 days into the course and I’m open to learning and willing to take any constructive criticism.
Thank you!
HTML
<!DOCTYPE html>
<html>
<head>
<Title>Dasmoto's Arts & Crafts</Title>
<link rel="stylesheet" href="./resources/CSS/Index.css">
</head>
<body>
<section class="banner">
<h1>Dasmoto's Arts & Crafts</h1>
</section>
<section class="brushes">
<h2>Brushes</h2>
<img src="../Dasmoto/resources/Dasmoto-2.jpeg" alt="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="prices">Starting at $3.00/ brushes.</span></p>
</section>
<section class="frames">
<h2>Frames</h2>
<img src="../Dasmoto/resources/Dasmoto-3.jpeg" alt="Art Frames">
<h3>Assorted Art Frames</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="prices">Starting at $2.00 / frame</span></p>
</section>
<section class="paint">
<h2>Paint</h2>
<img src="../Dasmoto/resources/Dasmoto-4.jpeg" alt="Paint">
<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="prices">Starting at $5.00 / tube</span></p>
</section>
</body>
</html>
CSS
* {
box-sizing: border-box;
}
body {
font-family: Helvetica;
}
h1 {
background-image: url("../Dasmoto-1.jpeg");
font-size: 100px;
font-weight: bold;
text-align: center;
color: khaki;
max-height: 500px;
border: solid 1px black;
}
h2 {
color: white;
font-weight: bold;
font-size: 32px;
}
.brushes h2 {
background-color: mediumspringgreen;
}
.frames h2 {
background-color: lightcoral;
}
.paint h2 {
background-color: skyblue;
}
span.prices {
font-weight: bold;
color: blue;
}