-
Notifications
You must be signed in to change notification settings - Fork 1
/
HTML Code.html
28 lines (25 loc) · 920 Bytes
/
HTML Code.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
<!DOCTYPE html>
<html lang="en-US">
<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>YouTube Thumbnail Downloader</title>
<link rel="stylesheet" href="YouTube-Thumbnail-downloader.css">
</head>
<body>
<div class="container">
<h1>YouTube Thumbnail Downloader</h1>
<form id="form">
<label for="url">Enter YouTube Video URL:</label>
<input type="text" id="url" name="url" placeholder="Paste URL to Grab Thumbnail" required>
<input type="submit" value="Get Thumbnails" />
</form>
<div id="thumbnails"></div>
<div id="error-message" style="display: none">
Please enter a valid YouTube video URL
</div>
</div>
<script src="YouTube-Thumbnail-Downloader.js"></script>
</body>
</html>