slimshadow commited on
Commit
3260dbe
·
verified ·
1 Parent(s): 5efa6b0

Update index.html

Browse files
Files changed (1) hide show
  1. 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>Download Instagram Reel</title>
7
- <link rel="stylesheet" href="style.css">
8
  </head>
9
  <body>
10
  <div class="container">
11
- <h1>Download Instagram Reel</h1>
12
- <p>Enter the URL of the Instagram Reel you want to download:</p>
13
- <input type="url" id="reelUrl" placeholder="Enter Instagram Reel URL" required>
14
- <button onclick="downloadReel()">Download Reel</button>
15
- <div id="message"></div>
16
- <div id="downloadLink"></div>
 
 
 
 
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>