-
Notifications
You must be signed in to change notification settings - Fork 0
/
basics.html
79 lines (78 loc) · 2.92 KB
/
basics.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<title>Knowledge base js</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<header class="sticky top-0 left-0 z-50 w-full h-full">
<div class="flex justify-between items-center px-8 py-3 mx-auto bg-white shadow-lg rounded-b-lg">
<div class="flex items-center ml-8 gap-6 ml-16">
<a href="./basics.html" class="text-sm cursor-pointer hover:text-gray-400 block">Basics</a>
</div>
</div>
</header>
<div class="grid grid-cols-1 2xl:grid-cols-2 gap-4 h-screen m-6">
<div class="grid grid-cols-1 gap-4 grid-flow-row auto-rows-max">
<div class="p-4 border border-gray-600 rounded-md">
<h1 class="mb-4">Arrow functions</h1>
<iframe
src="./basics/arrow-functions/index.html"
class="w-full h-full"
style="height: 80px"
></iframe>
</div>
<div class="p-4 border border-gray-600 rounded-md">
<h1 class="mb-4">Class is in section</h1>
<iframe
src="./basics/class-is-in-section/index.html"
class="w-full h-full"
style="height: 80px"
></iframe>
</div>
<div class="p-4 border border-gray-600 rounded-md">
<h1 class="mb-4">Demystifying modules</h1>
<iframe
src="./basics/demystifying-modules/index.html"
class="w-full h-full"
style="height: 80px"
></iframe>
</div>
<div class="p-4 border border-gray-600 rounded-md">
<h1 class="mb-4">Promises are made</h1>
<iframe
src="./basics/promises-are-made/index.html"
class="w-full h-full"
style="height: 80px"
></iframe>
</div>
</div>
<div class="grid grid-cols-1 gap-4 grid-flow-row auto-rows-max">
<div class="p-4 border border-gray-600 rounded-md">
<h1 class="mb-4">Async-await</h1>
<iframe
src="./basics/async-await/index.html"
class="w-full h-full"
style="height: 120px"
></iframe>
</div>
<div class="p-4 border border-gray-600 rounded-md">
<h1 class="mb-4">Declarative methods</h1>
<iframe
src="./basics/declarative-methods/index.html"
class="w-full h-full"
style="height: 120px"
></iframe>
</div>
<div class="p-4 border border-gray-600 rounded-md">
<h1 class="mb-4">Maps and sets are special objects</h1>
<iframe
src="./basics/maps-and-sets-are-special-objects/index.html"
class="w-full h-full"
style="height: 160px"
></iframe>
</div>
</div>
</div>
</body>
</html>