-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREAD-ME.html
More file actions
126 lines (120 loc) · 2.96 KB
/
READ-ME.html
File metadata and controls
126 lines (120 loc) · 2.96 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="color-scheme" content="dark" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Instructions</title>
<style>
:root {
/* Adjust these colors to your preference */
--bg-color: #1e1e1e;
--text-color: #ffffff;
--accent-color: #ff6f3f; /* A nice accent color */
--secondary-bg: #2e2e2e;
--font-family: sans-serif;
}
body {
margin: 0;
padding: 0;
background-color: var(--bg-color);
color: var(--text-color);
font-family: var(--font-family);
line-height: 1.5;
}
header {
text-align: center;
padding: 2rem 1rem 1rem;
}
header img {
max-width: 150px;
height: auto;
margin-bottom: 1rem;
}
h1 {
color: var(--accent-color);
margin-bottom: 0.5rem;
}
main {
background-color: var(--secondary-bg);
margin: 0 auto;
max-width: 800px;
padding: 2rem;
border-radius: 8px;
}
h2 {
color: var(--accent-color);
margin-top: 2rem;
margin-bottom: 1rem;
}
p {
margin: 1rem 0;
}
a {
color: var(--accent-color);
font-weight: bold;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ol, ul {
margin: 0 0 1rem 2rem;
}
footer {
text-align: center;
margin: 2rem 0 1rem;
font-size: 0.9rem;
opacity: 0.7;
}
</style>
</head>
<body>
<!-- Header & Logo -->
<header>
<img src="https://m45sci.xyz/m45-2024b-128.png" alt="M45 Logo" />
<h1>M45 Relay Client Instructions</h1>
</header>
<!-- Main Content -->
<main>
<h2>Getting Started</h2>
<ol>
<li>
<strong>Launch the program <code>M45-Relay-Client.exe</code>.</strong><br>
This will connect to the relay server and retrieve a list of available servers.
</li>
<li>
The client will automatically generate a file called <code>connect-links.html</code>
and attempt to open it in your default browser.
</li>
</ol>
<p>
If <code>connect-links.html</code> does not open automatically, you can open it manually:
<ul>
<li>Locate <code>connect-links.html</code> in the same folder as this file.</li>
<li>Double-click it or open it via this link:
<a href="connect-links.html">connect-links.html</a>
</li>
</ul>
</p>
<h2>Factorio (Without Steam)</h2>
<p>
If you do not have Steam installed, you can still connect in Factorio:
</p>
<ol>
<li>
In Factorio, go to <strong>Multiplayer</strong> →
<strong>Connect to address</strong>.
</li>
<li>
Enter the server address (for example, <code>127.0.0.1:10000</code>)
and click <strong>Connect</strong>.
</li>
</ol>
</main>
<!-- Footer -->
<footer>
2025 M45-Science
</footer>
</body>
</html>