-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (21 loc) · 766 Bytes
/
index.html
File metadata and controls
23 lines (21 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>WaYTback</title>
<meta name="description" content="The best way to download YouTube videos off the Wayback Machine!" />
<link rel="icon" href="img/favicon.png">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h1>WaYTback</h1>
<div id="container">
<input type="text" id="video_id" placeholder="Youtube URL">
<button id="combine-btn" onclick="combine()">
<span class="arrow">➔</span>
</button>
</div>
<p>A reskin of <a href="https://www.waybackyt.download/" target=”_blank”>Wayback YT Downloader</a> by JohnG0</p>
<script src="script.js"></script>
</body>
</html>