-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (64 loc) · 2.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"
integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous">
</script>
<title>Youtube Alternative</title>
</head>
<body>
<div class="container">
<h3 class="mt-3">Alternative to Youtube</h3>
</div>
<div class="container border border-primary rounded p-3 mt-1">
<form id="formrl" class="">
<div class="form-group">
<label for="url">Input Youtube URL</label>
<input type="url" class="form-control" type="text" id="original" value="" required>
</div>
<button type="submit" class="btn btn-primary">Convert Now!</button>
<a href="" class="btn btn-primary d-none" id="output">Please input url</a>
<a href="" class="btn btn-primary d-none" id="inv-output">Please input url</a>
<a href="" class="btn btn-primary d-none" id="hook-output">Please input url</a>
</form>
<footer class="footer mt-auto py-3">
<div class="container">
<span class="text-muted"></span>
</div>
</footer>
<script src="index.js"></script>
</div>
<div class="container border border-primary rounded p-3 mt-1">
<h4>These are some better alternatives to YouTube</h4>
<h6>
<a href="">Invidious</a>
</h6>
<div>
An open-source front-end alternative to YouTube. Seems to work pretty well from my experience so far, and it
hasn’t triggered anything on my adblocker/privacy extensions. Also offers downloads in many formats for
videos
(including .vtt subtitles).
</div>
<h6>
<a href="">Hooktube</a>
</h6>
<div>
A slightly better way to use actual YouTube. (Use as a “last resort”)
</div>
</div>
<footer class="footer m-1 p-1">
<div class="container">
<span class="">
For more information, please visit
<a href"https://degoogle.jmoore.dev/#replacementsalternatives"
rel=""> https://degoogle.jmoore.dev/#replacementsalternatives</a>
</span>
</div>
</footer>
</nav>
</body>
</html>