-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.html
158 lines (142 loc) · 5.57 KB
/
api.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!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>YTube-API</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"/>
<link rel="stylesheet" href="./css/styleapi.css">
<script src="https://unpkg.com/typed.js@2.0.132/dist/typed.umd.js"></script>
<link rel="icon" type="image/x-icon" href="./Images/YTube.png">
</head>
<body>
<div class="container">
<header>
<nav>
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i class="fas fa-bars"></i>
</label>
<label class="logo" onclick="redirectToHome()">YTube</label>
<ul>
<li><a class="active" href="./index.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./contact.html">Contact Us</a></li>
</ul>
</nav>
</header>
<section class="space">
<div id="main">
<br>
<a class="maintext"><h1 class="h1">YTube <span class="text"></span></h1></a>
<div class="api"><h1>YTube-API</h1></div>
</section>
<div class="api1">
<br>
<br>
YTube API provides an easy and convenient way to retrieve media files from popular websites and social media platforms. With a high success rate and fast response time, YTube API is one of the best options on the market.
<br>
<br>
YTube API supports downloads from the following websites:
<br>
<br>
•Youtube
<br>
<br>
To learn more about how to access YTube API or for additional information, please contact us at <b>contact@astechpro20.tk</b>.
<br>
<br>
</div>
<footer>
<div class="main-content">
<div class="left box">
<h2>About Us</h2>
<div class="content">
<p>YTube is a free YouTube video downloader that lets you download videos in MP4 format and convert them to MP3. You can choose to download videos in the highest or lowest resolution available on YouTube, and it offers a range of features.</p>
<div class="social">
<a href="https://github.com/AsTechpro20"><span class="fa-brands fa-github"></span></a>
<a href="https://twitter.com/AsTechpro20"><span class="fab fa-twitter"></span></a>
<a href="https://instagram.com/AsTechpro20"><span class="fab fa-instagram"></span></a>
<a href="https://www.youtube.com/channel/UCbO1IT3t9f0oE8t37ZgfB7Q"><span class="fab fa-youtube"></span></a>
<a href="#"><span class="fa-brands fa-discord"></span></a>
</div>
</div>
</div>
<div class="center box">
<h2>Pages</h2>
<div class="content">
<div class="place">
<span class="text">
<li><a href="./about.html">About Us</a></li>
<lI><a href="./faq.html">FAQ</a></lI>
<li><a href="./privacypolicy.html">Privacy Policy</a></li>
<li><a href="./contact.html">Contact Us</a></li>
<li><a href="./api.html">API</a></li>
<li><a href="./termsofservice.html">Terms of Service</a></li>
</span>
</div>
</div>
</div>
<div class="right box">
<h2>Help</h2>
<div class="content">
<div class="place">
<span class="text">
<li><a href="./privacypolicy.html">Privacy Policy</a></li>
<li><a href="./termsofservice.html">Terms of Service</a></li>
<li><a href="./contact.html">Contact Us</a></li>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="bottom">
<center>
<span class="far fa-copyright"></span><span> YTube 2023 All rights reserved |</span>
<span class="credit">Made With <i class="fas fa-heart text-danger"></i> By <a href="https://www.astechpro20.tk/">AsTechpro20</a> | </span>
</center>
</div>
</footer>
</body>
</html>
<script>
function redirectToHome() {
window.location.href = "/index.html";
}
const menuBar = document.getElementById('check');
const content = document.getElementById('main');
menuBar.addEventListener('click', function() {
if (menuBar.checked) {
content.style.display = 'none';
} else {
content.style.display = 'block';
}
});
const checkbox = document.querySelector('input[type="checkbox"]');
const footer = document.querySelector('footer');
checkbox.addEventListener('click', function() {
if (checkbox.checked) {
footer.style.display = 'none';
} else {
footer.style.display = 'block';
}
});
const check = document.getElementById('check');
const body = document.body;
check.addEventListener('click', function() {
if (check.checked) {
body.classList.add('no-scroll');
} else {
body.classList.remove('no-scroll');
}
});
var typingEffect = new Typed(".text",{
strings: ['Downloader!',"It's Free!",'With no ADS!','Supports','YouTube!','Try Out!'],
loop : true,
typeSpeed : 100,
backSpeed : 80,
backDelay : 1500,
});
</script>