<!DOCTYPE html>
<html>
<head>
<title>Social Media Video Downloader</title>
</head>
<body>
<h1>Social Media Video Downloader</h1>
<p>Paste the link to the video you want to download from Facebook, Instagram or Twitter:</p>
<form>
<input type=”text” id=”videoUrl” name=”videoUrl”><br><br>
<button type=”button” onclick=”download()”>Download</button>
</form>
<div id=”downloadArea”></div>
<script>
function download() {
var videoUrl = document.getElementById(“videoUrl”).value;
// code to download video from authorized source
// display results in downloadArea div
// example: document.getElementById(“downloadArea”).innerHTML = “<p>Video downloaded!</p>”;
}
</script>
</body>
</html>