first push

This commit is contained in:
Thijs Stobbelaar 2023-09-21 09:19:12 +02:00
parent a3c232a5a8
commit c5a0aee73a
12 changed files with 394 additions and 1 deletions

30
index.php Normal file
View file

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DTCH - PUBG Clan</title>
<link rel="stylesheet" href="./includes/styles.css">
</head>
<body>
<?php include './includes/navigation.php'; ?>
<header>
<h1>Welcome to DTCH - PUBG Clan</h1>
</header>
<main>
<section>
<h2>Welcome to DTCH - PUBG Clan</h2>
<p>Join us on our Discord:</p>
<a href="https://discord.gg/wMXsB3ZmNA" target="_blank" rel="noopener noreferrer">
<img src="./media/discordlogo.png" alt="Discord Logo" class="discord-logo">
</a>
</section>
</main>
<?php include './includes/footer.php'; ?>
</body>
</html>