-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
89 lines (76 loc) · 2.72 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
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About - SwiftPeakDevelopment</title>
<style>
/* CSS styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #222;
color: #fff;
line-height: 1.6;
}
header {
text-align: center;
padding: 20px 0;
}
h1 {
font-size: 2em;
}
main {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
section {
margin-bottom: 40px;
padding: 20px;
border-radius: 8px;
}
.bg-gray-800 {
background-color: rgb(31, 41, 55);
}
h2 {
font-size: 1.5em;
margin-bottom: 10px;
}
section p {
color: #ccc;
}
</style>
</head>
<body>
<header>
<h1>About SwiftPeakDevelopment</h1>
</header>
<main>
<section class="fivem-section bg-gray-800">
<h2>FiveM</h2>
<p><a href="fivem.html" style="color: rgb(110, 231, 183);">FiveM Developers</a> - click here to find out more about our FiveM Team</p>
</section>
<section class="minecraft-section bg-gray-800">
<h2>Minecraft</h2>
<p><a href="Minecraft.html" style="color: rgb(110, 231, 183);">Minecraft Developers</a> - click here to find out more about our Minecraft Team</p>
</section>
<section class="snailycad-section bg-gray-800">
<h2>SnailyCAD</h2>
<p><a href="SnailyCAD.html" style="color: rgb(110, 231, 183);">SnailyCAD Setup Specialists</a> - click here to find out more about our SnailyCAD Setup Specialists</p>
</section>
<section class="rust-section bg-gray-800">
<h2>Rust Development</h2>
<p><a href="Rust.html" style="color: rgb(110, 231, 183);">Rust Developers</a> - click here to find out more about our Rust Team</p>
</section>
<section class="game-server-section bg-gray-800">
<h2>Game Server Hosting</h2>
<p><a href="https://store.swiftpeekhosting.uk/" style="color: rgb(110, 231, 183);">SwiftPeakHosting.uk</a> - click here for more details.</p>
</section>
<section class="webhosting-section bg-gray-800">
<h2>Web Hosting Solutions</h2>
<p><a href="https://store.swiftpeekhosting.uk/" style="color: rgb(110, 231, 183);">SwiftPeakHosting.uk</a> - click here for more details.</p>
</section>
</main>
</body>
</html>