html-insta-test / index.html
slimshadow's picture
Update index.html
4c378ea verified
raw
history blame
677 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Download Instagram Reel</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Download Instagram Reel</h1>
<p>Enter the URL of the Instagram Reel you want to download:</p>
<input type="url" id="reelUrl" placeholder="Enter Instagram Reel URL" required>
<button onclick="downloadReel()">Download Reel</button>
<div id="message"></div>
<div id="downloadLink"></div>
</div>
<script src="script.js"></script>
</body>
</html>