-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
30 lines (30 loc) · 1.55 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="robots" content="index,follow">
<meta name="author" content="Daniel Ehniss, DEPONE Netzgestaltung">
<meta name="keywords" content="Video, Thumbnail, Vimeo, YouTube, Javascript">
<meta name="description" content="A tool to get thumbnail of video hosted on YouTube or Vimeo.">
<title>Get Thumbnail of a Video</title>
<link rel="stylesheet" href="./style.css" type="text/css" media="all">
</head>
<body>
<section id="main" class="main-wrapper" role="main">
<h1>Get Thumbnail of a Video</h1>
<p>Have you ever needed a thumbnail of a video hosted on <strong>YouTube</strong> or <strong>Vimeo</strong>? Look no further! Just copy the URL of the video in question, paste it into <a id="focus-input" href="#video-url">this field</a> and get the Thumbnail:</p>
<form class="main-form">
<label class="label" for="video-url">Paste URL of video into this field:</label>
<input class="input" id="video-url" type="url" placeholder="https://youtube.com/... or https://vimeo.com/..."/>
<input class="btn" id="submit" type="submit" value="Get Thumbnail">
</form>
<div id="result">
</div>
</section>
<footer class="page-footer" role="contentinfo">
<p>Made with ❤ by <a href="https://depone.net" rel="me">Depone</a>. <a href="/~https://github.com/deponeWD/video">View code on GitHub</a>.</p>
</footer>
<script src="./script.js"></script>
</body>
</html>