-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (31 loc) · 1.65 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<!--
Author: Nick Casey
Date: Jan. 17th 2019
Project: Dasmoto's Arts & Crafts
Version: 1.0
Description: Basic HTML/CSS practice exercise provided by CodeAcademy.
-->
<html>
<head>
<title> Dasmoto's Arts & Crafts </title>
<link href="./css/stylesheet.css" type="text/css" rel="stylesheet">
</head>
<body>
<div id = "header">
<h1> Dasmoto's Arts and Crafts </h1>
</div>
<h2 id="brushHeader"> Brushes </h2>
<img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-2/hacksaw.jpeg">
<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="buyingPrice"> Starting at $3.00/brush. </span> </p>
<h2 id="framesHeader"> Frames </h2>
<img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-2/frames.jpeg">
<h3> Art Frames (Assorted) </h3>
<p> Assorted frames made of different material, including MDF, birchwood, and PDE. Select frames can be sanded and paitned according to your needs. <span class="buyingPrice"> Starting at $2.00/brush. </span> </p>
<h2 id="paintHeader"> Paint </h2>
<img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-2/finnish.jpeg">
<h3> Clean Finnish Paint </h3>
<p> Imported paint from Finland. Over 256 colors available in-store, varying in quantity (1oz to 8oz) Clean Finnish paint microbinds to canvas, increasing the finish and longevity of any artwork. <span class = "buyingPrice"> Starting at $5.00/tube. </span> </p>
</body>
</html>