HTML5 - Xác định các nguồn thay thế cho phần tử Video
Xác định các nguồn thay thế cho phần tử Video
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Specify Alternate Sources for video Element in HTML</title>
</head>
<body>
<video controls="controls">
<source src="images/shuttle.mp4" type="video/mp4">
<source src="images/shuttle.ogv" type="video/ogg">
Your browser does not support the HTML5 Video element.
</video>
</body>
</html>