-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (90 loc) · 2.8 KB
/
index.html
File metadata and controls
90 lines (90 loc) · 2.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<title>Home · FxDevelopment</title>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<link rel="stylesheet" type="text/css" href="css/fa.min.css">
</head>
<body>
<!--<nav>
<a href="/" class="main">FxDevelopment</a>
</nav>-->
<header>
<div id="header">
<h1>FxDevelopment</h1>
<h2>Scalable gameplay plugins for servers<br/></h2>
<a class="button" href="#about">See More</a>
</div>
</header>
<section id="about">
<h2>About</h2>
<h3>
We create scalable gameplay plugins, mods, and tools for Minecraft servers.
All of our public projects are open-source on GitHub.
</h3>
<h3>We are multi-platform!</h3>
<div>
<img src="https://static.spigotmc.org/img/spigot-og.png" alt="Spigot"/>
<span>Bukkit/Spigot</span>
</div>
<div>
<img src="https://www.spongepowered.org/assets/img/icons/spongie-mark-dark.svg" alt="Sponge"/>
<span>Sponge</span>
</div>
<div>
<img src="https://files.minecraftforge.net/maven/manage/static/images/logo.svg" alt="Minecraft Forge"/>
<span>Minecraft Forge</span>
</div>
</section>
<section id="projects">
<h2>Our Projects</h2>
<div id="projects-here" class="grid">
</div>
</section>
<section id="contact">
<h2>Contact</h2>
<div id="contact-here" class="grid">
</div>
</section>
<footer>
<div style="display: flex;">
<div class="footer-col-lg">
<!--<img src=""/>-->
<span>We develop scalable plugins and mods for Minecraft servers.</span>
</div>
<!--<div class="footer-col">
<ul>
<li>Projects</li>
<li>Contact Us</li>
</ul>
</div>
<div class="footer-col">
<ul>
<li>Items1</li>
<li>Items2</li>
</ul>
</div>
<div class="footer-col">
<a href="https://discord.gg/VFNTycm" class="social-link"><i class="fab fa-discord"></i></a>
<a href="https://github.com/FxDevelopment" class="social-link"><i class="fab fa-github"></i></a>
</div>-->
</div>
<div class="copy">
<div>© 2020 Brendon Curmi. All Rights Reserved.</div>
</div>
</footer>
</body>
<script src="js/script.js" type="text/javascript"></script>
<script>
// Smooth scroll to anchor
const links = document.querySelectorAll("a[href^='#']");
for (const link of links) {
link.addEventListener("click", function(event) {
event.preventDefault();
scroll({top: document.querySelector(this.getAttribute("href")).offsetTop, behavior: "smooth"});
});
}
</script>
</html>