Skip to content

Instantly share code, notes, and snippets.

@sabonis
Created April 7, 2016 10:09
Show Gist options
  • Save sabonis/de138013b90a826c77005f5321dd4f3c to your computer and use it in GitHub Desktop.
Save sabonis/de138013b90a826c77005f5321dd4f3c to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<style>
html {
height: 100%;
}
body {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
body * {
margin-top: 10px;
}
.form-control {
width: 50%;
display: inline;
border-radius: 50px;
}
#btn_send {
width: 50%;
border-radius: 50px;
}
#container {
text-align: center;
}
</style>
<!-- Bootstrap -->
</head>
<body>
<div id="container">
<h1 style="color: brown;">Input youtube url below and you get the file.</h1>
<div>
<input class="form-control" style="" id="url"/>
<button class="btn btn-default" id="btn_send" value="send" type="button">SEND</button>
</div>
</div>
</body>
<script src="/js/test.js"></script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment