-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 940 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YtQck</title>
<link rel="manifest" href="./manifest.json">
<link rel="stylesheet" type="text/css" href="styles/main.css">
</head>
<body>
<header class="header">
<h1 class="header__title">YtQck</h1>
<input type="text" name="search" onKeyPress="video(document.getElementById('query').value)" onKeyUp="video(document.getElementById('query').value)" placeholder="Search Video..." class="query" id="query" list="items">
</header>
<main class="main">
<div class="card">
<div id="YTPlayer"></div>
</div>
<div class="card">
<div id="titleY" class="titleX"></div>
<div id="desc"></div>
<div id="viewsCount"></div>
</div>
</main>
<script src="scripts/index.js" async></script>
</body>
</html>