-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
84 lines (84 loc) · 4.75 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact • Holiday Happenings</title>
<meta name="description" content="Contact support (optionally anonymous).">
<meta property="og:type" content="website">
<meta property="og:locale" content="en_CA">
<meta property="og:title" content="Contact • Holiday Happenings">
<meta property="og:url" content="https://holidayhappenings.info/contact.html">
<meta property="og:image" content="http://www.holidayhappenings.info/images/hh_kickstarter.png">
<meta property="og:site_name" content="Holiday Happenings">
<meta property="og:description" content="Contact support (optionally anonymous).">
<meta name="twitter:card" content="summary_large_image">
<!-- <meta name="twitter:site" content="@yourtwitterhandle"> -->
<meta name="twitter:title" content="Contact • Holiday Happenings">
<meta name="twitter:url" content="https://holidayhappenings.info/contact.html">
<meta name="twitter:description" content="Contact support (optionally anonymous).">
<meta name="twitter:image" content="http://www.holidayhappenings.info/images/hh_kickstarter.png">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://kit.fontawesome.com/edb600a6e3.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="content centeredHorizontally">
<header class="topHeader">
<a href="javascript:void(0);" class="menu-button" onclick="openMenu()" title="Open Navigation"><i class="fa fa-bars"></i></a>
<nav id="full-menu">
<h1 class="logo"><span class="holiday">Holiday</span> <span class="happenings">Happenings</span></h1>
<div class="under-logo">
<ul class="internal">
<li><a href="index.html" class="button">Home</a></li>
<li><a href="downloads.html" class="button">Downloads</a></li>
<li><a href="faq.html" class="button">FAQ</a></li>
<li><a href="rules.html" class="button">Rules</a></li>
<li><a href="contact.html" class="button">Contact</a></li>
</ul>
<ul class="external">
<li><a target="_blank" href="https://holidayhappenings.itch.io/" class="button action"><i class="fas fa-gift"></i>Download Past Editions</a></li>
<li><a target="_blank" href="https://twitter.com/search?f=tweets&vertical=default&q=%23HolidayHappenings" class="button action"><i class="fab fa-twitter"></i>#HolidayHappenings</a></li>
<li><a target="_blank" href="https://discord.gg/TwZpPB4" class="button action"><i class="fab fa-discord"></i>Chat on Discord</a></li>
<li><a target="_blank" href="https://www.kickstarter.com/projects/holidayhappenings/holiday-happenings-2019" class="button action"><i class="fab fa-kickstarter-k"></i>Support the Kickstarter</a></li>
<li><a target="_blank" href="https://itch.io/jam/holiday-happenings-2019" class="button action"><i class="fab fa-itch-io"></i>Join the Game Jam</a></li>
<li><a href="on-the-x-day.html" class="button action"><i class="fas fa-edit"></i><span aria-label="On The X Day">OnTheXDay</span> Challlenge</a></li>
</ul>
</div>
</nav>
</header>
<div id="cover"></div>
<main>
<h1 class="title-heading">Contact</h1>
<section id="contact-form" class="py-3">
<div class="container">
<p>Please fill out the form below to contact us.</p>
<form name="contact" method="POST" netlify>
<div class="form-group">
<label for="name">Name</label>
<input type="text" name="name" id="name">
</div>
<div class="form-group">
<label for="pronouns">Pronouns</label> <span class="prounounIsland">Please feel free to link to a page on <a href="http://pronoun.is/">Pronoun Island</a>.</span>
<input type="text" name="pronouns" id="pronouns">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" name="email" id="email">
</div>
<div class="form-group">
<label for="message">Message <strong><abbr title="required">*</abbr></strong></label>
<textarea name="message" id="message" required></textarea>
</div>
<button type="submit" class="button action">Submit</button>
</form>
</div>
</section>
</main>
<footer>
<a target="_blank" href="https://github.com/Pawper/Holiday-Happenings"><i class="fab fa-github"></i> Contribute on GitHub</a>
</footer>
</div>
<script src="scripts/main.js"></script>
</body>
</html>