Calculator Tools Calculator Tools
Create

VHS Ao Vivo - Experience the Retro Vibes

Dec 1, 2025

About this app

VHS Ao Vivo is a fun and engaging web app where users can bring back the nostalgic vibes of the 80s and 90s by watching iconic clips and sharing memories with friends. Join us for a blast from the past!

VHS Ao Vivo - Experience the Retro Vibes Welcome to VHS Ao Vivo Share Your Memories!

Related apps

Put this on your site

Source

                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>VHS Ao Vivo - Experience the Retro Vibes</title>
<meta name="description" content="VHS Ao Vivo is a fun and engaging web app where users can bring back the nostalgic vibes of the 80s and 90s by watching iconic clips and sharing memories with friends. Join us for a blast from the past!">
<meta name="keywords" content="VHS, live, retro, 80s, 90s, clips, nostalgia, join, share memories, videos, fun app">

<!-- Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/fontawesome.min.css" crossorigin="anonymous">

<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
const videoList = [
{ title: 'Classic Music Video', src: 'https://example.com/video1.mp4' },
{ title: 'Retro TV Show Clip', src: 'https://example.com/video2.mp4' },
{ title: 'Old Commercial', src: 'https://example.com/video3.mp4' }
];

const videoContainer = document.getElementById('video-container');
videoList.forEach(video => {
const videoElement = document.createElement('div');
videoElement.className = "video-item mb-4";
videoElement.innerHTML = `
<h5>${video.title}</h5>
<video controls class="w-100" src="${video.src}" ></video>
`;
videoContainer.appendChild(videoElement);
});

const shareButton = document.getElementById('share-button');
shareButton.addEventListener('click', function() {
alert("Share your retro memories using #VHSAoVivo on social media!");
});
});

} catch (error) {
throw error;
}
</script>

<style>
body {
background: linear-gradient(to right, #FFB6C1, #FFDAB9);
color: #333;
}
#main-container {
margin-top: 50px;
}
h1 {
text-align: center;
color: #8B008B;
}
.video-item {
background: #FFF;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
padding: 20px;
}
button {
background-color: #32CD32;
color: white;
}
button:hover {
background-color: #28A745;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Welcome to VHS Ao Vivo</h1>
<div id="video-container" class="row"></div>
<div class="text-center">
<button id="share-button" class="btn btn-lg">Share Your Memories!</button>
</div>
</div>
</body>
</html>