30 lines
816 B
PHP
30 lines
816 B
PHP
<!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>
|