-
Notifications
You must be signed in to change notification settings - Fork 0
/
pop-up.html
80 lines (64 loc) · 2 KB
/
pop-up.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Uprooted - Pop-up Dinners in NYC</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Josefin+Slab" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="fonts.css">
<link rel="stylesheet" type="text/css" href="style.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-115952742-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-115952742-1');
</script>
</head>
<body>
<section>
<h1>
<img src="header-images/pop-up.jpg" alt="Uprooted" />
</h1>
<section id="page-content">
<h2>Upcoming Events</h2>
<h3>Spring</h3>
<ul>
<li>May 9th 2018</li>
<li>7:30pm</li>
<li>
Little Choc Apothecary<br />
<address>
141 Havemeyer Street<br />
Brooklyn, NY 11211<br />
</address>
</li>
<li>→ <em><a id="tickets-link" href="http://UprootedDinner.eventbrite.com">Purchase tickets here</a></em></li>
</ul>
</section>
<footer>
<nav id="site-navigation">
<ul class="centered-flexbox">
<li><a href="/">Home</a></li>
<li><a href="about">About</a></li>
<li><a href="contact">Contact</a></li>
</ul>
</nav>
<section class="separator">
<hr />
</section>
<section id="social-links">
<h4>Uprooted on social media:</h4>
<ul class="centered-flexbox">
<li><a href="https://www.instagram.com/uprootedeats"><img src="social-icons/instagram-logo-button.svg" alt="Instagram" /></a></li>
<li><a href="https://www.facebook.com/uprootedeats"><img src="social-icons/facebook-logo-button.svg" alt="Facebook" /></a></li>
<li><a href="#"><img src="social-icons/twitter-logo-button.svg" alt="Twitter" /></a></li>
</ul>
</section>
</footer>
</section>
</body>
</html>