-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
30 lines (26 loc) · 896 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Git Attendance</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss/dist/tailwind.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=K2D" rel="stylesheet">
<style>
body {
font-family: 'K2D', sans-serif;
}
</style>
</head>
<body class="bg-purple-lightest">
<h2 class="text-grey-darker bg-white py-4 shadow sticky">
<span class="ml-4">git attendance</span>
</h2>
<div class="container mx-auto px-4">
<div id="attendance" class="cards flex flex-wrap justify-center">
</div>
</div>
<script type="module" src="index.mjs"></script>
</body>
</html>