20 lines
579 B
HTML
20 lines
579 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="css/pico.min.css">
|
|
<title>Hello, world!</title>
|
|
</head>
|
|
<body>
|
|
<main class="container">
|
|
<h1>Download Videos</h1>
|
|
<div>
|
|
<label for="user-url">URL</label>
|
|
<input type="url" id="user-url" name="user-url" required>
|
|
</div>
|
|
<button>Start Download</button>
|
|
</main>
|
|
</body>
|
|
</html>
|