Kan je op je website een mp4 filmpje laten afspelen?
en hoe doe je dat?
4.454 views
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Trailer</title>
<style type="text/css">
html, body, #wrapper {
height:100%;
margin: 0;
padding: 0;
border: none;
text-align: center;
background: #000000;
}
#wrapper {
margin: 0 auto;
text-align: left;
vertical-align: middle;
width: 400px;
}
</style>
</head>
</head>
<body>
<table id="wrapper">
<tr>
<td>
<video width="320" height="240" autoplay>
<source src="movie.mp4" type="video/mp4">
Je browser ondersteund onze video niet.
</video>
</td>
</tr>
</table>
</body>
</html>