You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/css/Adding an MP3 without speci...

16 lines
578 B
HTML

<?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" subLang="en" xml:subLang="en">
<head>
<title>Adding an MP3 without specifying player</title>
</head>
<body>
<object width="400" height="80" type="audio/mpeg">
<param name="src" value="Clementine.mp3" />
<param name="autoplay" value="true" />
<param name="autostart" value="1" />
<embed src="Clementine.mp3" width="400" height="80" ></embed>
</object>
</body>
</html>