Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html> <head> <title>Video Captions Example</title> </head> <body> <h2>Video with Captions</h2> <p>The video below includes captions provided by a .vtt file. Click the "CC" button in the video controls to enable them.</p> <video width="720" height="405" controls> <source src="/video/koh_kood_3m.mp4" type="video/mp4"> <track src="/video/sample_captions.vtt" kind="captions" srclang="en" label="English" default> <p>Your browser does not support the video tag.</p> </video> <p>The <code>track</code> element references the <code>countdown_en.vtt</code> file which contains the timestamped text.</p> </body> </html>