-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (29 loc) · 1.12 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Events API</title>
<!-- Links to DaisyUI cdns -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<!-- Hero Section Start-->
<div class="hero min-h-screen 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">Checkout our member events from all around the world!</p>
<a href="#events-container"><button class="btn btn-primary">Check it Out!</button></a>
</div>
</div>
</div>
<!-- Hero Section End -->
<div id="events-container" class="min-h-screen bg-base-200 flex flex-wrap justify-center gap-8">
<span class="loading loading-bars loading-md"></span>
</div>
<!-- Link to custom JS -->
<script src="./Backend/script.js"></script>
</body>
</html>