-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (23 loc) · 803 Bytes
/
index.html
File metadata and controls
29 lines (23 loc) · 803 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link href="https://cdn.jsdelivr.net/npm/daisyui@3.5.0/dist/full.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="hero h-72 bg-base-200">
<div class="hero-content text-center">
<div class="max-w-md">
<h1 class="text-5xl font-bold">MLH Events</h1>
<p class="py-6">Check out our upcoming member events around the world!</p>
</div>
</div>
</div>
<div id="events-container" class="min-h-screen bg-base-200 flex flex-wrap justify-center gap-8">
<span class="loading loading-ball loading-lg text-warning"></span>
</div>
<script src="script.js"></script>
</body>
</html>