Hello everyone, I would like to share with you my project and ask for a review, I’m a beginner currently on 9% into the Front End Engineer Path
** Here’s my html: **
<head>
<title>Dasmoto’s Arts & Crafts</title>
<link href="./resources/css/index.css" type="text/css" rel="stylesheet">
</head>
<body>
<div>
<h1 class="coolheading">Dasmoto’s Arts & Crafts</h1>
</div>
<div class="subtitle_1">
<h2>Brushes</h2>
</div>
<div>
<img src="./resources/images/hacksaw.jpeg">
</div>
<div>
<h3>Hacksaw brushes</h3>
</div>
<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>Starting at $3.00 / brush.</strong> </p>
</div>
<div class="subtitle_2">
<h2>Frames</h2>
</div>
<div>
<img src="./resources/images/frames.jpeg">
</div>
<div>
<h3>Art Frames (assorted)</h3>
</div>
<p>Assorted frames made of different material, including MDF, birchwood, and PDE.
Select frames can be sanded and painted according to your needs. <strong>Starting at $2.00 / frame.</strong> </p>
</div>
<div class="subtitle_3">
<h2>Paint</h2>
</div>
<div>
<img src="./resources/images/finnish.jpeg">
</div>
<div>
<h3>Clean Finnish Paint</h3>
</div>
<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.
<strong>Starting at $5.00 / tube.</strong> </p>
</div>
</body>
Here’s my css
- {
font-family: Helvetica, Arial, sans-serif;
}
.coolheading {
background-image: url(…/images/pattern.jpeg);
text-align: center;
font-size: 100px;
font-weight: bold;
color: khaki;
}
.subtitle_1 {
font-family: Helvetica;
font-size: 24px;
font-weight: bold;
color: white;
background-color: mediumspringgreen;
}
h3 {
font-family: Helvetica;
font-weight: bold;
color: black;
}
strong {
font-family: Helvetica;
font-weight: bold;
color: blue;
}
.subtitle_2 {
font-family: Helvetica;
font-size: 24px;
font-weight: bold;
color: white;
background-color: lightcoral;
}
.subtitle_3 {
font-family: Helvetica;
font-size: 24px;
font-weight: bold;
color: white;
background-color: skyblue;
}
Thank you in advance for your kind review