Hey, I wrote this code for the project.
I’m unsure if this is the most efficient way for this work, do you you have any suggestions?
I saw a lot of codes which have included themeta data, did I miss this so far in the unit?
HTML:
<!DOCTYPE html>
<head>
<meta charset ="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="C:\Users\phili\Documents\Programmieren\Dasmoto's Arts & Crafts\resources\css\index.css" rel="stylesheet">
<title>Dasmoto's Arts & Crafts</title>
</head>
<body>
<header>
<h1 id="header">Dasmoto's Arts & Crafts</h1>
</header>
<main>
<section class="brushes">
<h3 class="Header1">Brushes</h3>
<img alt="brushes" src="C:\Users\phili\Documents\Programmieren\Dasmoto's Arts & Crafts\resources\hacksaw.jpeg">
<h6>Hacksaw Brushes</h6>
<p>
Made of the highest quality oak, Hacksaw brushes are known for their and ability to hold paint in large amounts. Available in different sizes. <span class="s1">Starting at $3.00 /brush.</span>
</p>
</section>
<section class="frames">
<h3 class="Header2">Frames</h3>
<img alt="frames" src="C:\Users\phili\Documents\Programmieren\Dasmoto's Arts &
Crafts\resources\frames.jpeg">
<h6>Art Frames (assorted)</h6>
<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="s2">Starting at $2.00/ frame.</span></p>
</section>
<section class="paint">
<h3 class="Header3">Paint</h3>
<img alt="Paint" src="C:\Users\phili\Documents\Programmieren\Dasmoto's Arts &
Crafts\resources\finnish.jpeg">
<h6>Clean Finnish Paint</h6>
<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="s3">Starting at $5.00/ tube.</span></p>
</section>
</main>
</body>
CSS:
h1 {
background-image: url("https://content.codecademy.com/courses/freelance-1/unit-2/pattern.jpeg?_gl=1*wynx75*_ga*OTA0NTQ0MTIxMi4xNjgyMzQ4NTA2*_ga_3LRZM6TM9L*MTY5MDIxODQwNS41My4xLjE2OTAyMTg0MTMuMC4wLjA.");
font-family: Arial, Helvetica, sans-serif;
font-size: 100px;
font-weight: bold;
color: khaki;
text-align: center;
}
h3 {
font-family: Arial, Helvetica, sans-serif;
font-size: 32px;
font-weight: bold;
color: white;
}
h3.Header1 {
background-color: mediumspringgreen;
}
h3.Header2 {
background-color: lightcoral;
}
h3.Header3 {
background-color: skyblue;
}
h6 {
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
font-size: 20px;
}
span {
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: blue;
}
p {
font-family: Arial, Helvetica, sans-serif;
}
Thanks for Suggestions