Skip to content

Instantly share code, notes, and snippets.

@Namane00426
Created March 8, 2021 10:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Namane00426/4da7ba7a585fd1fafb2c69ca29bc619e to your computer and use it in GitHub Desktop.
Save Namane00426/4da7ba7a585fd1fafb2c69ca29bc619e to your computer and use it in GitHub Desktop.
Codecademy project Dasmonto's Webpage html&css files
body {
font-family: Helvetica;
}
h1 {
font-size: 100px;
font-weight: bold;
color: khaki;
background-image: url("../images/pattern.jpeg");
width: auto;
text-align: center;
}
h2 {
font-size: 32px;
color: white;
font-weight: bold;
}
p strong {
font-weight: bold;
color: blue;
}
#Brushes {
background-color: mediumspringgreen;
}
#Frames {
background-color: lightcoral;
}
#Paint {
background-color: skyblue;
}
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8'/>
<title>Dasmoto's Arts & Crafts</title>
<link href="resource/css/page1.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<h1>Dasmoto's Arts & Crafts</h1>
</header>
<section>
<h2 id="Brushes">Brushes</h2>
<article>
<image src="resource/images/hacksaw.jpeg"></image>
<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. <strong>Starting at $3.00 / brush.</strong></p>
</article>
</section>
<section>
<h2 id="Frames">Frames</h2>
<article >
<image src="resource/images/frames.jpeg"></image>
<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. <strong>Starting at $2.00 / frame.</strong></p>
</article>
</section>
<section>
<h2 id="Paint">Paint</h2>
<article >
<image src="resource/images/finnish.jpeg"></image>
<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. <strong>Starting at $5.00 / tube.</strong></p>
</article>
</section>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment