-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.19 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
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>Slides - Code with Ahsan</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Nunito&display=swap"
rel="stylesheet"
/>
<script src="https://cdn.tailwindcss.com"></script>
<style>
html,
body {
font-family: 'Nunito', sans-serif;
}
</style>
</head>
<body>
<div class="reveal max-w-lg mx-auto my-32">
<h1 class="text-center text-4xl mb-5">Slides</h1>
<div id="talksGrid" class="grid grid-cols-3 gap-6 justify-center"></div>
</div>
<script src="main.js"></script>
<div class="watermark fixed bottom-4 left-0 right-0 justify-center mx-auto flex items-center">
<img class="w-10 scale-150" src="assets/images/code with ahsan.png">
<a href="https://twitter.com/codewith_ahsan" class="text-blue-500 text-lg hover:text-blue-300">@codewith_ahsan</a>
</div>
</body>
</html>