-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (86 loc) · 2.58 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="./resources/style.css" type="text/css" rel="stylesheet">
<title>Tea Cozy</title>
</head>
<body>
<div class='header'>
<img class='logo' src='./resources/img-tea-cozy-logo.png'>
<nav class='main_nav'>
<li><a>Mission</a></li>
<li><a>Featured</a></li>
<li><a>Locations</a></li>
</nav>
</div>
<div class='content'>
<div class='main_pic'>
<div class='main_text'>
<h2>Our Mission</h2>
<h4>Handpicked, artisanally Curated, Free Range, Sustainable, Small Batch, Fair Trade, Organic Tea</h4>
</div>
</div>
<!-- this is the tea of the month section -->
<div class='tea_month'>
<div class='sub_header'>
<h2>Tea of the Month</h2>
<h4>What's Steeping at the Tea Cozy?</h4>
</div>
<div class='menu'>
<div class='image'>
<img src='./resources/img-berryblitz.jpg'>
<h4>Fall Bery Blitz Tea</h4>
</div>
<div class='image'>
<img src='./resources/img-spiced-rum.jpg'>
<h4>Fall Bery Blitz Tea</h4>
</div>
<div class='image'>
<img src='./resources/img-donut.jpg'>
<h4>Fall Bery Blitz Tea</h4>
</div>
<div class='image'>
<img src='./resources/img-myrtle-ave.jpg'>
<h4>Fall Bery Blitz Tea</h4>
</div>
<div class='image'>
<img src='./resources/img-bedford-bizarre.jpg'>
<h4>Fall Bery Blitz Tea</h4>
</div>
</div>
</div>
<!-- This is the contact info section -->
<div class='about'>
<h2>Locations</h2>
<div class='stores'>
<div class='location'>
<h3>Downtown</h3>
<p>384 West 4th St.</p>
<p>Suite 108</p>
<p>Portland, Maine</p>
</div>
<div class='location'>
<h3>East Bayside</h3>
<p>3343 Phisherman's Ave</p>
<p>(Northwest Corner)</p>
<p>Portland, Maine</p>
</div>
<div class='location'>
<h3>Oakdale</h3>
<p>515 Crescent Ave</p>
<p>Second Floor</p>
<p>Portland, Maine</p>
</div>
</div>
</div>
<div class='contact'>
<h2>Tea Cozy</h2>
<h5>[email protected]</h5>
<h5>917-555-8904</h5>
</div>
<!-- Copyright -->
<h5 class='copyright'>copyright The Cozy Tea 2017</h5>
</div>
</body>
</html>