Spaces:
Running
Running
Update index.html
Browse files- index.html +12 -9
index.html
CHANGED
@@ -3,19 +3,22 @@
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
-
<title>
|
7 |
-
<link rel="stylesheet" href="
|
8 |
</head>
|
9 |
<body>
|
10 |
<div class="container">
|
11 |
-
<h1>
|
12 |
-
<p>Enter the URL of the Instagram Reel you want to download
|
13 |
-
<
|
14 |
-
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
17 |
</div>
|
18 |
-
|
19 |
<script src="script.js"></script>
|
20 |
</body>
|
21 |
</html>
|
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Instagram Reel Downloader</title>
|
7 |
+
<link rel="stylesheet" href="styles.css">
|
8 |
</head>
|
9 |
<body>
|
10 |
<div class="container">
|
11 |
+
<h1>Instagram Reel Downloader</h1>
|
12 |
+
<p>Enter the URL of the Instagram Reel you want to download.</p>
|
13 |
+
<form id="reelForm">
|
14 |
+
<input type="url" id="reelUrl" placeholder="Enter Instagram Reel URL" required>
|
15 |
+
<button type="submit">Download Reel</button>
|
16 |
+
</form>
|
17 |
+
<div id="result" class="hidden">
|
18 |
+
<h2>Download Link</h2>
|
19 |
+
<a id="downloadLink" href="#" target="_blank">Click here to download</a>
|
20 |
+
</div>
|
21 |
</div>
|
|
|
22 |
<script src="script.js"></script>
|
23 |
</body>
|
24 |
</html>
|