-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
55 lines (55 loc) · 1.83 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!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> -->
<link rel="stylesheet" href="dist/index.css" />
<link href="css/index.css" rel="stylesheet" />
</head>
<body class="flex flex-col">
<div class="navbar bg-base-100">
<button class="btn btn-ghost text-xl flex gap-4 items-center">
Slides - Code with Ahsan
</button>
<div class="flex-1"></div>
<button class="btn">
<img class="w-10" src="talks/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
>
</button>
</div>
<div class="reveal mx-auto my-32">
<div
id="talksGrid"
class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6 justify-center"
style="padding-inline: 40px"
></div>
</div>
<template id="cardTemplate">
<div class="card bg-neutral text-neutral-content">
<div class="card-body items-center text-center">
<h2 class="card-title">Cookies!</h2>
<p class="flex-1"></p>
<div class="card-actions justify-end">
<a href="#" target="_blank" class="btn btn-primary">View</a>
</div>
</div>
</div>
</template>
<script src="main.js"></script>
</body>
</html>