34 lines
850 B
HTML
34 lines
850 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<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">
|
||
|
<link rel="stylesheet" href="css/styles.css" crossorigin="use-credentials">
|
||
|
|
||
|
<title>Search Tesses YouTube Downloader</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<input id="text_field" style="width:75%" type="text" placeholder="Search YouTube"/><button id="search_button">Search</button>
|
||
|
<br>
|
||
|
<br>
|
||
|
<hr>
|
||
|
|
||
|
<table style="width:100%">
|
||
|
<tr>
|
||
|
<th>Thumbnail</th>
|
||
|
<th>Title</th>
|
||
|
<th>Type</th>
|
||
|
<th>Id</th>
|
||
|
<th>Other Resolutions</th>
|
||
|
</tr>
|
||
|
<div id="search_list">
|
||
|
|
||
|
|
||
|
</div>
|
||
|
</table>
|
||
|
<script src="js/search.js"></script>
|
||
|
</body>
|
||
|
</html>
|