-
Notifications
You must be signed in to change notification settings - Fork 0
/
team.html
50 lines (44 loc) · 1.55 KB
/
team.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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>NFINIT Labs</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/00bf878156.js" crossorigin="anonymous"></script> </head>
<body>
<header>
<nav>
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i class="fas fa-bars"></i>
</label>
<label class="logo">NFINITLabs</label>
<ul>
<li><a class="active" href="index.html">Home</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="discord.html">Discord</a></li>
</ul>
</nav>
<main>
<article style="color:blue;">
<h2 style="font-size:28px;">Modpacks</h2>
<div id="images">
<img id="modpacks" src="images/modpacks.png" alt="Astroblock" width="400" height="200">
</div>
<br>
<div id="buttons">
<button onclick="document.getElementById('modpacks').src='images/astroblock.png'">Astroblock</button>
<button onclick="document.getElementById('modpacks').src='images/planetary.png'">Planetary</button>
<button onclick="document.getElementById('modpacks').src='images/infernalblock.png'">Infernalblock</button>
</div>
</article>
</main>
<footer>
<br>
<h3>Discord</h3>
<a href="https://discord.gg/bC3Wga5 ">https://discord.gg/bC3Wga5e</a>
<p>©Copyright 2022 by NFINIT Labs. All rights reversed.</p>
</footer>
</body>
</html>