-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
144 lines (122 loc) · 6.19 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Ravenusric">
<meta name="description" content="Catawba Coffee Company is a place where locals gather
everyday to enjoy good company and fresh coffee. Our staff are welcoming and will make sure you leave
with a smile on your face!">
<meta name="keywords" content="HTML,CSS,XML,JavaScript,Coffee,Coffee Shop,Charlotte">
<link rel="shortcut icon" type="image/x-icon" href="assets/images/favicon (4).ico">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=EB+Garamond" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
<title>Catawba Coffee Co.</title>
</head>
<body>
<header id="showcase" class="grid">
<div class="bg-image"></div>
<div class="content-wrap">
<h1>Welcome to Catawba Coffee Co.</h1>
<p>Located off Main Street in downtown Mount Holly, NC Catawba Coffee Company is a place where locals gather
everyday to enjoy good company and fresh coffee. Our staff are welcoming and will make sure you leave
with a smile on your face!
</p>
<!--<a href="#section-b" class="btn">Read More</a>-->
<ul class="navbar">
<li class="nav-item">
<a class="nav-link" href="#section-a">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="menu.html">Menu</a>
</li>
<li class="nav-item">
<a class="nav-link" href="gallery.html">Gallery</a>
</li>
</ul>
</div>
</header>
<!----Main Area----->
<main id="main"></main>
<!------Section A------>
<section id="section-a" class="grid">
<div class="content-wrap">
<h2 class="content-title">About Us</h2>
<div class="content-text">
What started out as a dream hatched over a cup of coffee and a homemade
cake, and turned into a reality when Catawba Coffee came to be in 2014.
When Irene, the owner, came to Mount Holly it was originally for her to
manage another independent shop. As time went by she met some of the
most wonderful people! Many who knew each other and some who just
happened by (mostly by accident) no matter how you got here or where you
came from you'll become a regular. There's always the most eclectic
group of folks sitting around and telling stories, all over a cup of
coffee.
</p>
<br />
<p>
When the opportunity came to Irene and her husband Joe to buy the shop
it was nearly an immediate yes. The fear and doubt were quickly pushed
aside when the thought of having to leave Mount Holly and the family
that they'd became a part of was no longer imminent. Often times they're
asked how they came up with the name of their shop and the answer is and
will always be the Catawba River. Needless to say, the challenge of
being business owners was accepted and they have never looked back.
</p>
<br />
So, If you're in the area be sure to stop by for a cup and a smile. We'd
love to meet you!
</div>
</div>
</section>
<!---Section B
<section id="section-b" class="grid">
<div class="content-wrap">
</div>
</section>-->
<!----Section C------>
<section id="section-c" class="grid">
<div class="content-wrap">
<h2 class="content-title">This Review Sums Up Who We Are</h2>
<p>"This place has their own roaster who roasts a proprietary blend just for their business! In a word, all
of their coffee is phenomenal ! The atmosphere is relaxing and I jokingly say my office is in the
corner on the right. I spend so much time there people actually get up and move if I enter the shop. If
you want to know what Mount Holly is really like, this is the place to come. All educational, economic,
religious, social groups come here and blend together! It's more than coffee...it is a place you can
say
is more like home, than home!"</p>
</div>
</section>
<!--Section D------->
<section id="section-d" class="grid">
<div class="box">
<h2 class="content-title">Contact Us</h2>
<p>Please contact us if you would like to know more! We would love to hear from you through our email or
just stop by and have some good conversation!</p>
<a href="mailto:catawbacoffeeco@outlook.com"
style="text-decoration:none;color: whitesmoke">catawbacoffeeco@outlook.com</a>
</div>
<div class="box">
<h2 class="content-title">About Our Company</h2>
<p>Address: 117 N Main St, Mt Holly, NC 28120 | Phone: (704) 820-6556</p>
<p>Hours: Sunday Closed | Monday-Thursday 7AM–8PM | Friday 7AM–9PM | Saturday 8AM–9PM</p>
</div>
</section>
<!--Footer------->
<footer id="main-footer" class="grid">
<div>
<div><a href="https://www.facebook.com/catawbacoffeeco/">
<img class="img-1" src="assets/images/fb.png" alt="Facebook" /></a>
</div>
<div><a href="https://www.yelp.com/biz/catawba-coffee-co-mount-holly">
<img class="img-2" src="assets/images/Yelp.png" alt="Yelp" /></a>
</div>
<div><a href="https://www.instagram.com/catawbacoffeeco/">
<img class="img-3" src="assets/images/Instagram.png" alt="Instagram" /></a>
</div>
</div>
<div>Built by <a href="https://ravenusric.github.io/grid-portfolio/" target="_blank">Ravenusric</a></div>
</footer>
</body>
</html>