28 lines
855 B
HTML
28 lines
855 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>Home - E-Cafe</title>
|
||
|
<link rel="stylesheet" href="styles.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
<nav>
|
||
|
<ul>
|
||
|
<li><a href="index.html">Home</a></li>
|
||
|
<li><a href="games.html">Games</a></li>
|
||
|
</ul>
|
||
|
</nav>
|
||
|
</header>
|
||
|
<h1 class="title">
|
||
|
E-Cafe
|
||
|
</h1>
|
||
|
<section class="description">
|
||
|
<p><strong>Welcome to E-Cafe!</strong><br>
|
||
|
We're a small community with a Discord server, a Minecraft server</p>
|
||
|
</section>
|
||
|
<iframe
|
||
|
class="discord"
|
||
|
src="https://discord.com/widget?id=1003699887239610480&theme=dark" width="350" height="500" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts">
|
||
|
</iframe>
|
||
|
</body>
|
||
|
</html>
|