-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (66 loc) · 3.28 KB
/
index.html
File metadata and controls
66 lines (66 loc) · 3.28 KB
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
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Facebook video downloader - download videos from Facebook free.Facebook Video Downloader Online, Download Facebook Videos and Save them directly from facebook to your computer or mobile for Free without Software. We provide also a Video Downloader Chrome Extension. FBDOWN Best Facebook Video Downloader.">
<meta name="keywords" content="facebook video downloader,download facebook videos,facebook online downloader, grab facebook online, free facebook video downloader,baixar vídeos do Facebook,baixar facebook,video downloader extension chrome">
<meta name="author" content="SoykotHasan">
<title>Facebook Video Downloader</title>
<meta name="google-site-verification" content="8GZlLmI8SWV8vtA-gH9X51EH5DoSRGgvKklEYNjlLrg" />
<link rel="apple-touch-icon" href="icon.png">
<link rel="manifest" href="site.webmanifest">
<link href="/css/bootstrap.min.css" rel="stylesheet">
<link href="/css/style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<header class="header clearfix">
<h3 class="text-muted">Facebook Video Downloader</h3>
<p class="lead">Facebook Video Downloader Online, Download Facebook Videos and Save them directly from facebook to your computer or mobile for Free without Software. We provide also a Video Downloader Chrome Extension. FBDOWN Best Facebook Video Downloader.</p>
</header>
<main role="main">
<div class="jumbotron">
<form id="videoForm">
<div class="form-group">
<label for="exampleInputEmail1">Facebook Video Url</label>
<input type="text" class="form-control" name="url" placeholder="Video Url">
<small id="emailHelp" class="form-text text-muted">Enter Facebook Video URL</small>
</div>
<button type="submit" class="btn btn-primary">Download</button>
</form>
<hr>
<div class="row justify-content-md-center">
<div class="col col-lg-8 video-block">
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="row">
<div class="col-md-12 text-center border-top">
<p class="mb0">© Copyright 2019 <a href="/">Fbdown</a>. All Rights Reserved. <br> Designed by <a href="https://twitter.com/SoykotHasan4">@SoykotHasan</a></p>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="/js/jquery-3.2.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#videoForm").submit(function(e) {
e.preventDefault();
var url = "downloader.php";
$.ajax({
type: "POST",
url: url,
data: $("#videoForm").serialize(),
success: function(data){
$('.video-block').html(data);
}
});
});
});
</script>
</body>
</html>