-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
146 lines (140 loc) · 4.73 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="images/logo.png">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script>
/* When the user clicks on the button,
toggle between hiding and showing the dropdown content */
function myFunction() {
document.getElementById("myDropdown").classList.toggle("show");
}
// Close the dropdown if the user clicks outside of it
window.onclick = function (e) {
if (!e.target.matches('.dropbtn')) {
var myDropdown = document.getElementById("myDropdown");
if (myDropdown.classList.contains('show')) {
myDropdown.classList.remove('show');
}
}
}
</script>
<title>UMSKT - Contact</title>
</head>
<body>
<ul id="ul2">
<div id="half">
<li><a href="./index.html" id='home'>
<table>
<tr>
<th><img src='images/logo.png' width="30px"></th>
<th>UMSKT</th>
</tr>
</table>
</a></li>
<div id="right">
<li><a href="./download.html">Downloads</a></li>
<li><a href="./documentation.html">Documentation</a></li>
<li><a href="./contact.html">Contact</a></li>
</div>
<li id="right2"><a class="dropbtn" onclick="myFunction()">Menu <i class="fa fa-bars" aria-hidden="true"></i></a>
</li>
</div>
</ul>
<div class="dropdown-content" id="myDropdown">
<a href="./download.html">Downloads</a>
<a href="./documentation.html">Documentation</a>
<a href="./contact.html">Contact</a>
</div>
<div id="banner2"><img src="images/bg.jpeg" id="bg2">
<h1 class="centered">Contact</h1>
</div>
<div id="content">
<h1>Want to get involved?</h1>
<p>UMSKT offers many ways for people to get involved in development, or even testing.</p>
<hr />
<h3>Here are the ways you can get involved.</h3>
<p>Join one of the following chat methods to get involved with the following:</p>
<ul>
<li>Development</li><br>
<li>Testing</li><br>
<li>Ports</li><br>
</ul>
<center>
<table id="r500-up">
<tr>
<th>
<table id="contact-methods">
<tr>
<th><a href='https://umskt.zulipchat.com'><img
src='https://img.shields.io/badge/zulip-join_chat-lightblue.svg'></a></th>
<th>Zulip Chat</th>
</tr>
</table>
</th>
<br id="contact-break">
<th>
<table id="contact-methods">
<tr>
<th><a href='https://web.libera.chat/gamja/?nick=Guest?#mspid'><img
src='https://img.shields.io/badge/libera.chat-%23mspid-green'></a></th>
<th>IRC</th>
</tr>
</table>
</th>
<br id="contact-break">
<th>
<table id="contact-methods">
<tr>
<th><a href='https://umskt-invite.glitch.me/'><img
src="https://dcbadge.vercel.app/api/server/cUZxfNNSdt?style=flat" /> </a></th>
<th>Discord</th>
</tr>
</table>
</th>
</tr>
</table>
<div id="r500-down">
<table id="contact-methods">
<tr>
<th><a href='https://umskt.zulipchat.com'><img
src='https://img.shields.io/badge/zulip-join_chat-lightblue.svg'></a></th>
<th>Zulip Chat</th>
</tr>
</table>
</th>
<br id="contact-break">
<th>
<table id="contact-methods">
<tr>
<th><a href='https://web.libera.chat/gamja/?nick=Guest?#mspid'><img
src='https://img.shields.io/badge/libera.chat-%23mspid-green'></a></th>
<th>IRC</th>
</tr>
</table>
<br id="contact-break">
<table id="contact-methods">
<tr>
<th><a href='https://umskt-invite.glitch.me/'><img
src="https://dcbadge.vercel.app/api/server/cUZxfNNSdt?style=flat" /> </a></th>
<th>Discord</th>
</tr>
</table>
</div>
</center>
<br>
<br>
<br>
<footer>
<hr>
<p>Copyright <b>2019-2023</b> UMSKT Contributors</p>
<p>Website designed by <a href='https://github.com/techguy16'>techguy16<a /></p>
<p>Website maintained by <a href='https://github.com/techguy16'>techguy16</a> and <a
href='https://github.com/thepwrtank18'>TheTank20</a></p>
</footer>
</div>
</body>
</html>