I’m currently doing the off platform project for CSS, but one of my background colors is not showing when I test. I have no Idea why this is happening and have tried multiple things. Here’s some HTML and CSS code (sorry for the messiness)
<!DOCTYPE html>
<html>
<head>
<title>Dasmoto's arts and crafts</title>
<link href="./index.css" rel="stylesheet">
</head>
<body>
<h1>Dasmoto's arts & crafts</h1>
<h2 class="brushes">Brushes</h2>
<Img src="https://content.codecademy.com/courses/freelance-1/unit-2/hacksaw.jpeg"></Img>
<h4><bold>Hacksaw brushes</bold></h4>
<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. <div class="blue-text">Starting at $3.00 / brush.</div></p>
<div class="brushes"><h2>Frames</h2></div>
<img src="https://content.codecademy.com/courses/freelance-1/unit-2/frames.jpeg"></img>
<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. <div class="blue-text">Starting at $2.00 / frame.</div></div></p>
<h2>Paint</h2>\
<img src="https://content.codecademy.com/courses/freelance-1/unit-2/finnish.jpeg"></img>
<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. <div class="blue-text">Starting at $5.00 / tube.</div></p>
</body>
</html>
CSS:
h1 {
font-family: Helvetica;
font-size: 100px;
font-weight: bold;
color: khaki;
text-align: center;
background-image: url(https://content.codecademy.com/courses/freelance-1/unit-2/pattern.jpeg);
};
h4 {
font-family: helvetica;
font-size: 32px;
font-weight: bold;
color: white;
};
.brushes h4
{
background-color: mediumspringgreen !important;
padding: 10px;
};
I’m specifically looking for why the .brushes background does not work.