cs50/src8/video.html

15 lines
248 B
HTML

<!DOCTYPE html>
<!-- Demonstrates video -->
<html lang="en">
<head>
<title>video</title>
</head>
<body>
<video controls muted>
<source src="video.mp4" type="video/mp4">
</video>
</body>
</html>