<!DOCTYPE html>
<html lang="en">
<head>
<title>Multimedia Page</title>
</head>
<body>
<h2>Multimedia Page</h2>
<h3>Video Player</h3>
<video width="320" height="240" controls>
<source src="1.mp4" type="video/mp4">
</video>
<h3>Audio Player</h3>
<audio controls>
<source src="audio.mp3" type="audio/mpeg">
</audio>
</body>
</html>