-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (61 loc) · 2.47 KB
/
index.html
File metadata and controls
84 lines (61 loc) · 2.47 KB
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
80
81
82
83
84
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PH Tube</title>
<!-- Tailwind and DaisyUI link -->
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.12.12/dist/full.min.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.tailwindcss.com"></script>
<!-- Custom CSS Link -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav class="w-11/12 mx-auto py-5 flex justify-between items-center border-b-2">
<div class="logo w-[135px]">
<img src="./assets/Logo.png" alt="logo">
</div>
<div class="search">
<label class="input input-bordered flex items-center gap-2">
<input id="search-input" type="text" class="grow" placeholder="Search" />
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 16 16"
fill="currentColor"
class="h-4 w-4 opacity-70">
<path
fill-rule="evenodd"
d="M9.965 11.026a5 5 0 1 1 1.06-1.06l2.755 2.754a.75.75 0 1 1-1.06 1.06l-2.755-2.754ZM10.5 7a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Z"
clip-rule="evenodd" />
</svg>
</label>
</div>
<div class="sort">
<button class="btn">SORT</button>
</div>
</nav>
</header>
<nav class=" py-5 flex gap-5 justify-center" id="categories">
</nav>
<main>
<section id="videos" class="w-11/12 mx-auto grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-5 py-10">
</section>
</main>
<!-- Open the modal using ID.showModal() method -->
<button id="showModalData" class="btn hidden" onclick="customModal.showModal()">open modal</button>
<dialog id="customModal" class="modal modal-bottom sm:modal-middle"> <!-- modal er dialog er id kokhono haifen "-" use kora jaina.. but underScore "_" use kora jai -->
<div class="modal-box">
<div id="modal-content">
</div>
<div class="modal-action">
<form method="dialog">
<!-- if there is a button in form, it will close the modal -->
<button class="btn">Close</button>
</form>
</div>
</div>
</dialog>
<script src="./scripts/video.js"></script>
</body>
</html>