html-insta-test / index.html
slimshadow's picture
Update index.html
46f8197 verified
raw
history blame contribute delete
918 Bytes
<!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>&copy; SlimShadow C 2024. All Rights Reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>