-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
80 lines (78 loc) · 2.19 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
<!doctype html>
<html>
<head>
<title>Contact | Emul8Me</title>
<link rel="stylesheet" href="/styles.css" />
</head>
<body>
<dyn-header></dyn-header>
<main>
<section>
<h3 style="color: #ff7b00">
Please note, this website is still under development, and more games
will be added over time.
</h3>
</section>
<section>
<h2>Open a GitHub Issue</h2>
<a
class="gitissue"
style="
color: white;
background-color: #ff6100;
padding: 20px;
text-decoration: none;
"
href="https://github.com/opott/Emul8Me/issues/new?assignees=opott&labels=Bug&projects=&template=bug-report.md&title=%5BBug%5D+Description"
>Bug Report</a
>
<a
class="gitissue"
style="
color: white;
background-color: #ff6100;
padding: 20px;
text-decoration: none;
"
href="https://github.com/opott/Emul8Me/issues/new?assignees=opott&labels=Cover+Art+Improvement&projects=&template=cover-art-improvement.md&title=%5BSYSTEM%5D+Game+Name"
>Cover Art Improvement</a
>
<a
class="gitissue"
style="
color: white;
background-color: #ff6100;
padding: 20px;
text-decoration: none;
"
href="https://github.com/opott/Emul8Me/issues/new?assignees=opott&labels=New+Game+Request&projects=&template=game-request.md&title=%5BSYSTEM%5D+Game+Title"
>Game Request</a
>
<a
class="gitissue"
style="
color: white;
background-color: #ff6100;
padding: 20px;
text-decoration: none;
"
href="https://github.com/opott/Emul8Me/issues/new"
>Other</a
>
</section>
</main>
<dyn-footer></dyn-footer>
<script src="/headerfooter.js"></script>
</body>
<style>
gitissue {
background-color: #ff6100;
color: #ff6100;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
}
</style>
</html>