```html Video Converter Video Converter Select a video file to convert: MP4 WEBM AVI Convert Video ``` ### CSS (styles.css) ```css body { font-family: Arial, sans-serif; background-color: #f4f4f4; text-align: center; padding: 50px; } .container { background: white; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } h1 { color: #333; } button { background-color: #5cb85c; color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; } button:hover { background-color: #4cae4c; } ``` ### JavaScript (script.js) ```javascript document.getElementById('convertButton').addEventListener('click', function() { const videoInput = document.getElementById('videoInput').files[0]; const formatSelect = document....
Comments
Post a Comment