Spaces:
Running
Running
File size: 918 Bytes
4c378ea 3260dbe 4c378ea 3260dbe 4c378ea 46f8197 4c378ea 595b4fa |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Instagram Reel Downloader</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Instagram Reel Downloader</h1>
<p>Enter the URL of the Instagram Reel you want to download.</p>
<form id="reelForm">
<input type="url" id="reelUrl" placeholder="Enter Instagram Reel URL" required>
<button type="submit">Download Reel</button>
</form>
<div id="result" class="hidden">
<h2>Download Link</h2>
<a id="downloadLink" href="#" target="_blank">Click here to download</a>
</div>
</div>
<footer>
<p>© SlimShadow C 2024. All Rights Reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>
|