-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (34 loc) · 2.28 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JS API H-Tube</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.min.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.tailwindcss.com"></script>
<link href="/dist/output.css" rel="stylesheet">
</head>
<main class="m-7 h-8">
<!-- <nav class="m-7 h-8"> -->
<div class="grid grid-cols-3">
<div><img class="h-8" src="./images/Logo.png"/></div>
<div class="flex justify-center"><button id="sortedByViewId" class="categoryBtn btn btn text-slate-500-sm btn-active btn-ghost rounded hover:bg-red-500 hover:text-white" onclick="sortedByView()">Sort By View</button></div>
<div class="flex justify-end"><button class="btn btn-sm btn-error rounded" onclick="location.href='./blog.html'">Blog</button></div>
</div>
<hr class="my-7"></hr>
<div class="flex justify-center">
<button id="category-id-1000" class=" categoryBtn btn btn-sm text-slate-500 mr-9 btn-active px-5 btn-ghost rounded hover:bg-red-500 hover:text-white" onclick="categoryBtnActive(1000)">All</button>
<button id="category-id-1001" class=" categoryBtn btn btn-sm text-slate-500 mr-9 btn-active px-5 btn-ghost rounded hover:bg-red-500 hover:text-white" onclick="categoryBtnActive(1001)">Music</button>
<button id="category-id-1003" class=" categoryBtn btn btn-sm text-slate-500 mr-9 btn-active px-5 btn-ghost rounded hover:bg-red-500 hover:text-white" onclick="categoryBtnActive(1003)">Comedy</button>
<button id="category-id-1005" class=" categoryBtn btn btn-sm text-slate-500 mr-9 btn-active px-5 btn-ghost rounded hover:bg-red-500 hover:text-white" onclick="categoryBtnActive(1005)">Drawing</button>
</div>
<!-- </nav> -->
<div id="iterms" class="grid grid-cols-4 gap-2 mt-10">
</div>
<div id="NoDataDiv">
<img class="mx-auto" src="./images/Icon.png"/>
<h1 class="text-3xl font-bold text-center mt-5 text-red-600"> Oops! Sorry. There is no content here </h1>
</div>
</main>
<script src="./script.js"></script>
</html>