yt-web-downloader/www/index.html
Oliver Atkinson ca8c12f56e working v1
2024-05-08 13:56:59 -06:00

48 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Download Youtube Videos</title>
<link rel="canonical" href="http://localhost:1313/" />
<link rel="stylesheet" type="text/css" media="screen" href="./style.css" />
<link rel="stylesheet" type="text/css" href="./lugo.css"/>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robots" content="index, follow" />
</head>
<body>
<header>
<h1>
<a href="./">Download Youtube Videos</a>
</h1>
</header>
<main>
<section>
<div class="article-header">
<h3 class="spaced"></h3>
</div>
<article>
<link rel="stylesheet" type="text/css" media="screen" href="./form.css" />
<form action="/download" enctype="application/x-www-form-urlencoded" method="post">
<input type="text" name="url" placeholder="youtube url" />
<br/>
<div class="line">
<input id="audio" type="radio" name="output" value="Audio" />
<label for="audio">Audio</label>
</div>
<div class="line">
<input id="video" type="radio" name="output" value="Video" />
<label for="video">Video</label>
</div>
<br/>
<button type="submit">Submit</button>
</form>
</article>
</section>
</main>
</body>
</html>