-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 1.34 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<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 Music Downloader</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<style>
body{
background-color:black;
color: white;
}
form
{
position:absolute;
top:45%;
left:25%;
width:50%;
}
h1{
position:absolute;
top:25%;
left:35%;
}
.form-control
{
border-width: 5px;
border-color:greenyellow;
margin: 10px;
}
</style>
</head>
<body>
<center>
<h1>Youtube Music Downloader</h1>
<form action="/" method="POST">
<input type="text" name="vlink" placeholder="Paste your video link here" class="form-control">
<button type="submit" class="btn btn-success">Download</button>
</form>
</center>
</body>
</html>