необходимо с помощью html5 вставить видео в шапку но все браузеры ругаются кроме opera помогите как могите
<!DOCTYPE html>
<html>
<head>
<title>site</title>
<link href="style.css" type="text/css" rel="stylesheet">
</head>
<body>
<video width="100%">
<source src="video/movie.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
<source src="video/movie.webm" type='video/webm; codecs="vp8, vorbis"'>
<source src="video/movie.ogv" type='video/ogg; codecs="theora, vorbis"'>
Video tag not supported. Download the video <a href="movie.webm">here</a>.
</video>
</body>
</html>