-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver_info.html
84 lines (76 loc) · 3.1 KB
/
server_info.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Server Info - BSRP</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://baconspacerp.github.io/bootstrap.min.css">
<!-- FontAwesome CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
/* Custom server info styles */
body {
background-color: #000;
color: #fff;
font-family: "Arial", sans-serif;
text-align: center;
}
.container {
padding: 50px;
}
h2 {
font-size: 36px;
border-bottom: 2px solid #3ea2ff;
padding-bottom: 10px;
}
p {
font-size: 18px;
line-height: 1.6;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="container-fluid">
<a class="navbar-brand" href="https://baconspacerp.github.io/index.html">Home</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="https://baconspacerp.github.io/about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://baconspacerp.github.io/jobs/index.html">Jobs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://baconspacerp.github.io/project/index.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://baconspacerp.github.io/server_info.html">Server Info</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://baconspacerp.github.io/character/index.html">Character</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Main Content for the Server Info Page -->
<div class="container">
<h2>Server Information</h2>
<p>Server Name: BSRP</p>
<p>Server IP: SoonTM</p>
<p>Server Port: SoonTM</p>
<p>Server Rules: <a href="#">View Rules</a></p>
<!-- Add more server information here as needed -->
</div>
<!-- Bootstrap JavaScript -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>