-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (35 loc) · 1.26 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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tiktok Downloader</title>
<!-- Favicon -->
<link rel="icon" href="logo.png" type="image/png">
<!-- Font & bootstrap -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Css -->
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1 class="text-center mb5">Tiktok Downloader</h1>
<h4 class="text-center mb5">Download Video Tiktok No Watermark</h4>
<div class="row justify-content-center">
<div class="col-md-6">
<div class="mb-3">
<form>
<input class="form-control" type="text" id="url" placeholder="Masukan URL Video" required>
</div>
<div class="d-grid gap-2">
<button class="btn btn-primary btn-lg float-end" id="submit-button">Submit</button>
</div>
</form>
</div>
</div>
</div>
<div class="mt-3" id="result"></div>
</div>
</body>
<script src="script.js"></script>
</html>