mirror of
https://github.com/Pathduck/pathduck.github.io.git
synced 2026-07-16 16:42:00 -04:00
27 lines
649 B
HTML
Executable File
27 lines
649 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>HTML Test Page</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<center>
|
|
<div>Test 1 - MKV + AAC audio</div>
|
|
<video width="960" height="540" controls>
|
|
<source src="test-aac.mkv">
|
|
Your browser does not support the video tag.
|
|
</video>
|
|
<div>Test 2 - MKV + MP3 audio</div>
|
|
<video width="960" height="540" controls>
|
|
<source src="test-mp3.mkv">
|
|
Your browser does not support the video tag.
|
|
</video>
|
|
|
|
</center>
|
|
|
|
</body>
|
|
</html>
|