HTML5 - Nhúng video vào html
Nhúng video vào html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Embedding Video into an HTML Page</title>
</head>
<body>
<video controls="controls" src="images/shuttle.mp4">
Your browser does not support the HTML5 Video element.
</video>
</body>
</html>