-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
119 lines (97 loc) · 2.49 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
118
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vampire: The Masquerade LARP</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
background-image: url("background2");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
color: #fff;
}
header {
text-align: center;
max-width: device-width;
}
h1 {
margin: 0;
font-size: 5vw;
}
main {
font-family: "Franklin Gothic";
opacity: 0.75;
background-color: #2B2B2C;
background-position: center;
padding: 5%;
text-align: left;
font-size: 2vw;
color: #fff;
}
section {
margin-bottom: 5%;
}
h2 {
font-size: 4vw;
margin-bottom: 5%;
text-align: center;
}
p {
margin: 0;
line-height: 1.5;
}
a {
color: #fff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
background-color: #393636;
padding: 5%;
text-align: center;
}
footer p {
color: #fff;
margin: 0;
font-size:1.5vw;
}
</style>
<header> </header>
<body>
<header>
<h1><img src="header" alt="VampireHeader" width="100%" height="auto"></h1>
</header>
<main>
<center>
<nav>
<ul>
<a href="index.html">Home</a>
<a href="overview.html">Overview</a>
<a href="setting.html">Setting</a>
<a href="conduct.html">Conduct</a>
<a href="rules.html">Rules</a>
<a href="theclans.html">The Clans</a>
<a href="payment.html">Payment</a>
<a href="contact.html">Contact Us</a>
<a href="finances.html">Finances</a>
<a href="creation.html">Character Creation</a>
<a href="coterie-creation.html">Coterie Creation</a>
<a href="new-player.html">New Player Content</a>
<a href="lexicon.html">Lexicon</a>
</ul>
</nav>
</center>
<section>
<h2>Contact Us</h2>
<p> Our Email for Enquiry is: ravesandrevolts@outlook.com</p>
</section>
<section>Our Discord: <a href="https://discord.gg/kAdrVH94VN" target="_blank" rel="noopener noreferrer">Discord Link</a></section>
<footer>
<p>© 2023 Raves and Revolt Vampire: The Masquerade LARP. All rights reserved.</p>
</footer>
</body>
</html>