Reputation: 209
<html>
<head>
<body>
hello world
<audio controls autoplay>
<source src="Strobe.mp3" type="audio/mpeg" />
<source src="Strobe.wav" type="audio/x-wav"/>
<source src="Strobe.ogg" type="audio/ogg"/>
</audio>
</body>
</head>
</html>
This will load fine in Chrome, Firefox, IE, Opera but not Safari. What am I doing wrong?
Upvotes: 2
Views: 465
Reputation: 5631
Your head tag is not closed properly. body
must come after the head tag.
Upvotes: 2