-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
117 lines (114 loc) · 3.02 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
---
layout: default
title: Contact
description: 1DST - Contact
---
<div class="darkblue">
<div class="centretxt">
<br>
<h1 class="pixeldark h0">Contact Us!</h1>
<br>
</div>
</div>
<hr>
<div class="darkneutral">
<br>
<h4>Via Discord @melonmasteristaken or <a href="">join our server.</a></h4>
<br>
<h4>Via email @ <a href="mailto:[email protected]">[email protected]</a> (this method may take longer, but will feel more formal)</h4>
<br>
<p><strong>Or use the contact form below!</strong></p>
<br>
</div>
<hr>
<div class="darkblue">
<h2 class="pixeldark h0">Contact Form</h2>
</div>
<style>
body {
font-family: "Montserrat", Helvetica, Arial, sans-serif;
background-color: #000000;
color: #dedede;
}
.darkblue {
background-color: #16257a;
padding: 20px;
border-radius: 10px;
margin-bottom: 20px;
}
.darkneutral {
background-color: #000000;
padding: 20px;
border-radius: 10px;
margin-bottom: 20px;
}
.centretxt {
text-align: center;
}
hr {
border: none;
border-bottom: 5px dotted #f7f7f7;
max-width: 100%;
overflow: hidden;
margin: 20px 0;
}
h1, h2, h4 {
color: #ffffff;
}
a {
color: #2fc271;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
form {
max-width: 600px;
margin: auto;
padding: 20px;
background-color: #2f3640;
border-radius: 10px;
border: none; /* added to remove the border */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* added to give a subtle shadow */
}
label {
display: block;
margin-bottom: 5px;
font-family: "Pixelify Sans", monospace;
color: #ffffff;
}
input, textarea {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 5px;
font-family: "Helvetica Neue", Helvetica, sans-serif;
}
.submit-button {
background-color: #16257a; /* changed to dimmed blue */
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
font-family: "Montserrat"; /* added to use Montserrat font */
font-weight: 900; /* added to use heavy font */
}
.submit-button:hover {
background-color: #3e8e41;
}
</style>
<form id="fs-frm" name="simple-contact-form" accept-charset="utf-8" action="(link unavailable)" method="post">
<fieldset id="fs-frm-inputs">
<label for="full-name">Full Name</label>
<input type="text" name="name" id="full-name" placeholder="First and Last" required>
<label for="email-address">Email Address</label>
<input type="email" name="_replyto" id="email-address" placeholder="[email protected]" required>
<label for="message">Message</label>
<textarea rows="5" name="message" id="message" placeholder="Your message here..." required></textarea>
<input type="hidden" name="_subject" id="email-subject" value="Contact Form Submission">
</fieldset>
<input type="submit" value="Submit" class="submit-button">
</form>