This repository has been archived by the owner on Sep 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
76 lines (75 loc) · 4.54 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
74
75
76
<html>
<head>
<title>Insta-Video Downloader</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="Description" content="Instagram Video Downloader or Insta-Video Downloader is developed as Instagram does not allow you to download videos directly but you like to. Insta-Video Downlaoder extracts mp4 video link from the Instagram post URL and downloads the video irrespective of the device (desktop or mobile or tablet).">
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Lobster" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>::-webkit-input-placeholder{text-align:center}:-moz-placeholder{text-align:center}::-moz-placeholder{text-align:center}:-ms-input-placeholder{text-align:center}body{font-size:16px}.header{text-align:center;font-family:Lobster;font-size:50px;color:#d9534f}#downloadVideo{font-size:24px;margin-top:2%}.content{padding-top:5%}.footer{background-color:#000;padding:1.5rem 0;word-spacing:10px;color:#d9534f;left:0;right:0;bottom:0;position:fixed}.fa{color:#d9534f}input{text-align:center}</style>
</head>
<body>
<div class="container">
<div class="header">
Insta-Media Downloader
</div>
<div class="row content">
<div class="col-sm-12">
<p class="text-center">Enter Instagram Image / Video link & click on 'Get Media' button</p>
<div class="input-group">
<input type="text" id="postUrl" class="form-control" placeholder="Instagram Post URL" value="https://www.instagram.com/p/B_uHiUpDxVh/"/>
<span class="input-group-btn">
<button class="btn btn-danger" type="button" id="getMedia">Get Media!</button>
</span>
</div>
</div>
<div class="col-sm-12 col-md-8 col-md-offset-2">
<div id="media" class="text-center"></div>
</div>
</div>
<hr style="margin: 10rem 0 4rem 0"/>
<i>
Did you like some image / video on Instagram and want to save that Instagram image / video on your device? Don't worry, you can download it here on any device like iPhone, Android or Computer etc.!!
</i>
<div class="panel panel-danger" style="margin-top:2rem">
<div class="panel-heading text-center h3" style="margin-top:0">How to Download Instagram Image / Video Online?</div>
<div class="panel-body">
<ul>
<li>Go to Instagram and open the image / video which you want to download.</li>
<li>Copy the Instagram image / video URL </li>
<ul>
<li>On Instagram App: Tap on more options ( <i class="fa fa-ellipsis-v" aria-hidden="true"></i> ), and tap on "Copy Share URL" or "Copy link". This will copy the link of image / video to the clipboard.</li>
<li>On Web browser: Open the Instagram post containing image / video in new tab, and copy the URL from URL bar of the browser. </li>
</ul>
<li>Now, paste the image / video link in above input box, and click/tap on 'Get Media' button</li>
<li>Right Click on the media that's loaded below and click Save.</li>
<li>Instagram image / video will be saved to your device.</li>
</ul>
</div>
</div>
<div class="panel panel-danger" style="margin: 4rem 0 10rem 0">
<div class="panel-body">
<p>Instagram Media Downloader or Insta-Media Downloader is developed as Instagram does not allow you to download images / videos directly but you like to. Insta-Media Downlaoder extracts image / mp4 video link from the Instagram post URL and downloads the image / video irrespective of the device (desktop or mobile or tablet).</p>
<p><b>Note</b>: Some of the Instagram images / videos / accounts are private. Private Instagram images / videos are not accessible and can't be downloaded using this tool.</p>
<p>This tool just uses the information that is freely accessible on Instagram and presents it in a different manner. Copyright and trademarks => refer to their respective owners.</p>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-xs-7 text-right">
© 2020
</div>
<div class="col-xs-5 text-right">
<a href="https://github.com/vishwas-r/Insta-Video-Downloader" target="_blank"><i class="fa fa-github"></i></a>
<a href="https://facebook.com/csultimates/" target="_blank"><i class="fa fa-facebook"></i></a>
<a href="https://csultimates.com/blog/" target="_blank"><i class="fa fa-external-link"></i></a>
</div>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>