-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (56 loc) · 2.93 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<title>You Learn!</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="cover-container d-flex w-100 h-100 p-1 mx-auto flex-column">
<header class="masthead">
<div class="inner">
<h3 class="masthead-brand">You Learn</h3>
<nav class="nav nav-masthead justify-content-center">
<a class="nav-link active" href="#">Home</a>
<a class="nav-link" href="#">Features</a>
<a class="nav-link" href="#">Contact</a>
</nav>
</div>
</header>
<main role="main" class="inner">
<div class="d-flex">
<form class="form-inline w-100" id="form-url">
<input type="hidden" name="id" id="id"/>
<label class="sr-only" for="inlineFormInputName2">Youtube url</label>
<input type="text" class="form-control mb-2 mr-sm-2 col" id="url" value="" placeholder="">
<button type="submit" class="btn btn-primary mb-2 col-2">Submit</button>
</form>
</div>
<div id="languages"></div>
<ul id="result" class="list-unstyled container-fluid">
</ul>
<!--<h1 class="cover-heading">Cover your page.</h1>
<p class="lead">Cover is a one-page template for building simple and beautiful home pages. Download, edit the text, and add your own fullscreen background photo to make it your own.</p>
<p class="lead">
<a href="#" class="btn btn-lg btn-secondary">Learn more</a>
</p>-->
</main>
<footer class="mastfoot">
<div class="inner">
<p>YouLearn by dimtim <a href="">@itimpo</a>.</p>
</div>
</footer>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" crossorigin="anonymous"></script>
<script src="https://underscorejs.org/underscore-min.js"></script>
<script src="index.js"></script>
</body>
</html>