-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_eng.html
118 lines (117 loc) · 3.5 KB
/
index_eng.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BM2402 Server Information</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
width: 80%;
max-width: 800px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.logo {
text-align: center;
margin-bottom: 20px;
}
hr {
border: 0;
height: 1px;
background: #ccc;
margin: 20px 0;
}
h2 {
color: #333;
}
h4 {
color: #666;
margin-bottom: 10px;
background-color: #f4f4f4;
padding: 10px;
}
p {
margin: 5px 0;
color: #333;
}
a {
color: #007BFF;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.section {
margin-bottom: 20px;
padding: 10px;
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 5px;
}
.menu {
background-color: #007BFF;
padding: 10px;
text-align: right;
}
.menu a {
color: #fff;
margin-left: 15px;
}
@media (max-width: 600px) {
.container {
width: 95%;
padding: 10px;
}
h2 {
font-size: 1.5em;
}
h4 {
font-size: 1.2em;
}
}
</style>
</head>
<body>
<div class="menu">
<a href="svenska.html">Svenska</a>
</div>
<div class="container">
<div class="logo">
<img src="./bmlogo.png" alt="BM Logo">
</div>
<hr>
<div class="section">
<h2>BM2402 Server Information</h2>
</div>
<div class="section">
<h4>Here you will find some useful links (info directly from the server):</h4>
<p><a href="http://bm2402.dmrsweden.se/status/status.htm">Server status</a></p>
<p><a href="http://bm2402.dmrsweden.se/status/list.htm">Connected stations</a></p>
<p><a href="http://bm2402.dmrsweden.se/status/monitor.htm">RDAC status (if applicable)</a></p>
<p><a href="http://bm2402.dmrsweden.se/status/places/BlockedUsers.htm">Blocked IDs</a></p>
</div>
<div class="section">
<h4>Support in Swedish (external links):</h4>
<p><a href="https://www.facebook.com/groups/678641648819659">Facebook group SWEDMR</a></p>
<p><a href="https://swedmr.se/">www.swedmr.se</a></p>
</div>
<div class="section">
<h4>Support in English (external links):</h4>
<p><a href="https://radioid.net/">radioid.net</a></p>
<p><a href="https://support.brandmeister.network/servicedesk/customer/user/login?destination=portals">BrandMeister Help Center</a></p>
</div>
<div class="section">
<h4>Source code for this page:</h4>
<p><a href="https://github.com/sa3bpe/Landningssida-BM2402">Landing page-BM2402 @ GitHub</a></p>
</div>
</div>
</body>
</html>