forked from ga-wdi-exercises/hippy-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (36 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>SPIRIT DUNCAN</title>
<!-- external CSS link -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<header>
<h1>SPIRIT DUNKIN</h1>
<h2>FLOWER SHOP OWNER, WILLIAMSBURG</h2>
</header>
<body>
<div class="page">
<div class="mainPicture">
<img src="images/orchids.jpg" alt="mainPicture" />
</div>
<h3>About</h3>
<p>Spirit has been working in the flower industry for 20 years. She began her work in San Francisco and has recently moved to Williamburg in Brooklyn, NY. She recently has transitioned to a lifestyle in which she enjoys frolicking in the fields on a daily basis
</p>
<p>Her specialty is flowers for hipster weddings. Please feel free to contact Spirit anytime if you are planning a wedding that involves teepees, quilts, or lace.
</p>
<h3>PHOTOS</h3>
<div class="photos">
<img src="images/sunflowers.jpg" alt="sunflower" />
<img src="images/water.jpg" alt="water" />
<img src="images/purple.jpg" alt="purple" />
<img src="images/ocean.jpg" alt="ocean" />
</div>
</div>
</body>
<footer>
<p>Spirit Dunkin © 2012</p>
</footer>
</html>