-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
89 lines (86 loc) · 2.93 KB
/
template.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
<!DOCTYPE html>
<html>
<head>
<title>Nightmare Realm</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="favicon.png" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
crossorigin="anonymous"
></script>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="scripts/adroll.js"></script>
<script src="scripts/gtag.js"></script>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-0LQ1SD4DS8"
></script>
<!-- Google tag end (gtag.js) -->
</head>
<body>
<header></header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="lore.html">Lore</a></li>
<li><a href="jobs.html">Jobs</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="sponsors.html">Sponsors</a></li>
<li>
<a
class="tickets-header-button"
href="https://nightmarerealmllc.ticketspice.com/project-jingle-hell"
target="_blank"
>Tickets</a
>
</li>
</ul>
</nav>
<main>
<div class="container">
<h1 class="jumbotron-heading">Album example</h1>
<p class="lead text-muted">Something short and leading about the collection below—its contents, the creator, etc. Make it short and sweet, but not too short so folks don't simply skip over it entirely.</p>
<p>
<a href="#" class="btn btn-primary my-2">Main call to action</a>
<a href="#" class="btn btn-secondary my-2">Secondary action</a>
</p>
</div>
</main>
<footer>
<div class="contact">
<a href="http://www.facebook.com/nightmarerealmkalamazoo"
><img src="images/facebook.gif"
/></a>
<a href="http://www.instagram.com/nightmarerealmkalamazoo"
><img src="images/instagram.gif"
/></a>
<a href="https://www.youtube.com/channel/UC5KfJ7cAu9ZnyPYS4KL7zdg"
><img src="images/youtube.gif"
/></a>
</div>
<p>
Nightmare Realm Kalamazoo LLC, 23492 Red Arrow Hwy, Mattawan, MI 49071,
(616) 920-1618
</p>
<p>
Site contents copyright ©2023 Nightmare Realm Kalamazoo, unless
otherwise noted. All rights reserved.
</p>
<p>
<a href="privacy-policy.html" target="_blank">Privacy Policy</a>|<a
href="terms-of-use.html"
target="_blank"
>Terms of Use</a
>
</p>
</footer>
</body>
</html>