-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (89 loc) · 3.16 KB
/
index.html
File metadata and controls
99 lines (89 loc) · 3.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ForestBukkit</title>
<link rel="icon" type="image/x-icon" href="fb.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
<style>
/* Basic Reset and Font */
body, html {
min-height: 100vh;
display: flex;
flex-direction: column;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
color: #ffffff;
overflow-x: hidden;
background-color: #000;
background-image: url('bground.jpg');
background-size: cover;
background-attachment: fixed;
}
header {
flex: 1; /* Pushes footer to the bottom */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
font-size: 2.5em;
}
footer {
text-align: center;
padding: 20px;
font-size: 0.8em;
color: #bbbbbb;
}
.tagline {
font-size: 16pt;
margin-top: 10px;
color: #bbbbbb;
}
a {
color: #ffffff;
}
</style>
</head>
<body>
<!-- Header Section -->
<header>
<img src="fbclear.png" width="256" height="256">
<strong>ForestBukkit</strong>
<div class="tagline">Connecting the world.</div>
</header>
<!-- <!– Projects Section –>-->
<!-- <section class="projects-section">-->
<!-- <h2>We've worked with...</h2>-->
<!-- <div class="project-cards container">-->
<!-- <div class="project-card">-->
<!-- <h3>Development</h3>-->
<!-- <p>We've developed projects for a large variety of networks, websites, and apps, working with hundreds of people to create their vision.</p>-->
<!-- </div>-->
<!-- <div class="project-card">-->
<!-- <h3>Content Creation</h3>-->
<!-- <p>We've created content for large platforms like YouTube, Vimeo, and TikTok, reaching over 50k impressions on all our platforms.</p>-->
<!-- </div>-->
<!-- <div class="project-card">-->
<!-- <h3>Marketing</h3>-->
<!-- <p>We've worked with several brands to market their projects, we've worked with several major Minecraft networks and Content Creators.</p>-->
<!-- </div>-->
<!-- <!– Add more project cards as needed –>-->
<!-- </div>-->
<!-- </section>-->
<!-- <!– Social Links Section –>-->
<!-- <section class="social-links">-->
<!-- <a href="https://github.com/ForestBukkit" target="_blank"><i class="fab fa-brands fa-github fa-2x"></i></a>-->
<!-- <a href="https://x.com/ForestBukkit" target="_blank"><i class="fab fa-brands fa-twitter fa-2x"></i></a>-->
<!-- <a href="https://discord.gg/E2GcpCyFVv" target="_blank"><i class="fab fa-brands fa-discord fa-2x"></i></a>-->
<!-- </section>-->
<!-- Footer Section -->
<footer>
Want to work with us? <a href="https://T.me/KaboomB52">Send a message!</a>
<br>
© 2020-2025 ForestBukkit. All rights reserved.
</footer>
</body>
</html>