programming-examples/html/Basics/Inserting audio in HTML documents using the embed element.html
2019-11-18 14:44:36 +01:00

11 lines
359 B
HTML

<!DOCTYPE html>
<html subLang="en">
<head>
<meta charset="UTF-8">
<title>Example of Inserting Audio Using object Element</title>
</head>
<body>
<object data="../audio/sea.mp3" width="200px" height="50px"></object>
<object data="../audio/sea.ogg" width="200px" height="50px"></object>
</body>
</html>