-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (60 loc) · 2.01 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Dasmoto Project</title>
</head>
<body>
<header>
<h1>Dasmoto's Arts & Crafts</h1>
</header>
<main>
<div class="container_one">
<p>Brushes</p>
<img
src="https://content.codecademy.com/courses/freelance-1/unit-2/hacksaw.jpeg"
alt=""
srcset=""
/>
<h2>hacksaw Brushes</h2>
<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>Starting at $3.00 / brush.</span>
</p>
</div>
<div class="container_two">
<p>Frames</p>
<img
src="https://content.codecademy.com/courses/freelance-1/unit-2/frames.jpeg"
alt="paint"
srcset=""
/>
<h2>Art Frames (assorted)</h2>
<p>
Assorted frames made of different material, including MDF, birchwood,
and PDE. Select frames can be sanded and painted according to your
needs. <span>Starting at $2.00 / frame.</span>
</p>
</div>
<div class="container_true">
<p>Paint</p>
<img
src="https://content.codecademy.com/courses/freelance-1/unit-2/finnish.jpeg"
alt="paint"
srcset=""
/>
<h2>Clean Finnish Paint</h2>
<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>Starting at $5.00 / tube.</span>
</p>
</div>
</main>
</body>
</html>