jwimmer
jwimmer

Reputation: 209

Safari will not load html5 audio tag

<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

Answers (1)

Fabien Snauwaert
Fabien Snauwaert

Reputation: 5631

Your head tag is not closed properly. body must come after the head tag.

Upvotes: 2

Related Questions