-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (86 loc) · 4.68 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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Trove Design Shop | Located in Birmingham, Alabama</title>
<meta name="description" content="Trove Design Shop in Birmingham, Alabama at Railroad Park offers candles, handmade jewelry, ceramics, art, books, home decor, greeting cards, and more.">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<!-- Google Font - Montserrat -->
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<!-- Google Search Console Verification -->
<meta name="google-site-verification" content="Bmg5uPv1RnDYcSUSoLZ3QgCFxrBDybBVkUBAusdZcho" />
</head>
<body>
<div class="container">
<header>
<img src="img/logo.png" alt="Trove Design Shop"/>
<h1 class="sans-serif"><span class="hidden">Trove Design Shop: </span>Beautiful Treasures</h1>
<div class="grey-bg"></div>
</header>
<article>
<p>A new art- and design-focused gift and home goods shop located in Birmingham’s Woodlawn neighborhood.</p>
<p><a class="button sans-serif small" href="https://trovebham.myshopify.com/" target="_blank">Vist Our Online Shop</a></p>
<p class="sans-serif">BOOKS CANDLES ART CARDS JEWELRY DÉCOR</p>
<p class="sans-serif small">5532 1ST AVENUE NORTH, BIRMINGHAM, AL 35212</p>
<p class="sans-serif small">(205) 390-6929 • <a href="mailto:[email protected]">[email protected]</a></p>
<p class="sans-serif small">11–6 WEDNESDAY THRU FRIDAY<br>10–3 SATURDAY & SUNDAY</p>
<div class="img-block">
<a href="https://www.instagram.com/trovebham/"><img src="img/ceramic-planter.jpg" alt="Image of a wall-mounted ceramic planter."/></a>
<a href="https://www.instagram.com/trovebham/"><img src="img/bookshelf.jpg" alt="Image of a bookshelf containing many books on the topics of Art and Design."/></a>
<a href="https://www.instagram.com/trovebham/"><img src="img/interior-furniture.jpg" alt="Image of the interior space of the shop, with chair, table, and window seat."/></a>
</div>
<div class="email-signup">
<p class="sans-serif small">Email List:</p>
<div class="form">
<form action="https://trovebham.us19.list-manage.com/subscribe/post?u=ee3fa7322d9ca089c7b15b4fd&id=ccca46e5b2" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<label for="mce-EMAIL">Subscribe to our mailing list</label>
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="email address" required>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_ee3fa7322d9ca089c7b15b4fd_ccca46e5b2" tabindex="-1" value=""></div>
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button sans-serif small">
</form>
</div>
</div>
<p class="sans-serif social-links small">
<a href="https://www.instagram.com/trovebham/">Instagram</a><br>
<a href="http://facebook.com/trovebham/">Facebook</a>
</p>
</article>
</div>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-128420670-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-128420670-1');
</script>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous">
</script>
<script>
// If we have a short page, the grey column may not extend to the bottom of the page.
$(document).ready(function(){
// Check the page content height against the window height
var greyCol = $('.grey-bg');
function colSetHeight(windowHeight) {
windowHeight = Math.round(windowHeight);
$(greyCol).css('height', windowHeight);
}
if ($(window).height() > $('body').height()){
colSetHeight($(document).height());
}
$(window).on('resize', function(){
if ($(window).height() > $('body').height()){
colSetHeight($(document).height());
}
});
});
</script>
</body>
</html>