<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video abspielen und herunterladen</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 50px;
}
video {
width: 80%;
max-width: 600px;
margin-top: 20px;
}
button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
margin-top: 20px;
}
a {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #4CAF50;
color: white;
text-decoration: none;
font-size: 16px;
border-radius: 5px;
}
a:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<h1>Video abspielen und herunterladen</h1>
<!-- Video wird direkt angezeigt -->
<video controls>
<source src="Video.mpg" type="video/mpg">
Ihr Browser unterstützt das Videoformat nicht.
</video>
<br>
<!-- Download-Link -->
<a href="Video.mpg" download="Video.mpg">Video herunterladen</a>
</body>
</html>