blob: 6b75afecd5c806a2230b7e1ca77d758c230fc459 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>174th Battle Group - Star Citizen Military Organisation</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
body {
margin: 1rem;
max-width: 666px;
font-family: 'Sora', sans-serif;
}
p {
text-align: justify;
}
a {
color: red;
text-decoration: none;
}
#header {
display: flex;
align-items: center;
margin-bottom: 1rem;
}
#logo {
width: 100px;
height: auto;
}
</style>
</head>
<body>
<div id="header">
<img id="logo" src="logo.png">
<div style="margin-left: 1rem; display: flex; flex-direction: column; justify-content: center; height: 100px;">
<h1 style="margin: 0;">174th Battle Group</h1>
<h2 style="color: rgb(158, 0, 0); margin: 0;">The "Red Right Hand" of the UEE</h2>
</div>
</div>
<!-- elevator pitch -->
<p>
We're a Star Citizen organisation focused on structured play, small-team tactics, and distributed operations, aiming to provide a rich and varied experience for our members.
</p>
<!-- ops times and attendance -->
<p>
Our bigger sessions are held on Saturdays around 17-18:00 UTC and usually last 4 hours. We also run smaller weekday sessions using an "on call" system. Members are expected to attend at least one bigger session every two weeks, though real life comes first and we will work around schedules.
</p>
<!-- entry requirements and how to join -->
<p>
We welcome anyone interested in joining, regardless of experience. New members must be respectful, professional, and follow our code of conduct. They should either know Star Citizen and its mechanics or be willing to learn and improve.
</p>
<!-- final pitch to join -->
<p>
If you're interested in joining the 174th Battle Group, reach out through our Discord server below. We look forward to welcoming you and working together toward our goals in the 'verse.
</p>
<!-- links -->
<p style="flex-direction: column; display: flex; gap: 0.5rem;">
<div>
<b>Discord:</b> <a href="https://174bg.net/discord" target="_blank">174bg.net/discord</a>
</div>
<div>
<b>Handbook:</b> <a href="https://174bg.net/handbook" target="_blank">174bg.net/handbook</a>
</div>
<div>
<b>Manager:</b> <a href="https://174bg.net/manager" target="_blank">174bg.net/manager</a>
</div>
</p>
<!-- cryptic shit -->
<span style="position: absolute; bottom: 1rem; right: 1rem; font-size: 0.8rem; opacity: 0.33;">
Expose. Exploit. Erase.
</span>
</body>
</html>
|