HTML生日視頻代碼
<!DOCTYPE html> <html> <head> <title>生日視頻</title> </head> <body> <h1>Happy Birthday!</h1> <div> <video controls width="640" height="360"> <source src="birthday.mp4" type="video/mp4"> <p>Your browser doesn't support HTML5 video. Here is a <a href="birthday.mp4">link to the video</a> instead.</p> </video> </div> <script> alert("Happy Birthday"); </script> </body> </html>
這是一個(gè)簡(jiǎn)單的生日視頻HTML代碼。在代碼中,我們使用了video標(biāo)簽來添加視頻,并通過source標(biāo)簽將視頻文件鏈接添加到了頁面中。如果您的瀏覽器不支持HTML5 video標(biāo)簽,我們也為您提供了一個(gè)備用鏈接,以讓您能夠查看視頻。此外,我們還添加了一個(gè)JavaScript腳本,當(dāng)頁面加載完成時(shí)將彈出一條生日提示信息。