-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (46 loc) · 1.82 KB
/
Copy pathindex.html
File metadata and controls
51 lines (46 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Map Makers & Programmers</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<div class="noise-overlay"></div>
<video id="background-video" autoplay loop muted>
<source src="./assets/background.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="overlay">
<main class="content-wrapper">
<h1 class="main-title">Map makers & Programmers</h1>
<div class="centered-navigation">
<nav class="main-navigation">
<a href="./subpages/archives.html" class="nav-button">
<img src="assets/archives-icon.svg" alt="Archives" class="button-icon">
ARCHIVES
</a>
<a href="./subpages/tools.html" class="nav-button">
<img src="assets/tools-icon.svg" alt="Tools" class="button-icon">
TOOLS
</a>
<a href="./subpages/misc.html" class="nav-button">
<img src="assets/misc-icon.svg" alt="Misc" class="button-icon">
MISC
</a>
</nav>
</div>
<div class="cta-section">
<a href="https://discord.gg/EPqvgcPNHx" target="_blank" class="discord-button">
Join The Discord
</a>
</div>
</main>
<footer class="site-footer">
<div class="footer-content">
<p>© 2024 Map Makers & Programmers. A few rights reserved...</p>
</div>
</footer>
</div>