-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
80 lines (70 loc) · 2.91 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - 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 futuristic 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;
}
/* Add more futuristic styling as needed */
</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>
</ul>
</div>
</div>
</nav>
<!-- Main Content for the Futuristic About Page -->
<div class="container">
<h2>About Us</h2>
<p>Welcome to the futuristic world of BaconSpaceRP!</p>
<p>Our server is powered by cutting-edge technology, offering an immersive roleplay experience like no other.</p>
<p>Join us in shaping the future of gaming!</p>
</div>
<!-- Discord Widget -->
<iframe src="https://discord.com/widget?id=503650270329438208&theme=dark" width="350" height="500"
allowtransparency="true" frameborder="0"
sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
<!-- 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>