<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video Row</title>
<style>
.video-container {
display: flex;
justify-content: space-between;
}
.video-container video {
width: 32%;
height: auto;
}
</style>
</head>
<body>
<div class="video-container">
<video controls>
<source src="video1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<video controls>
<source src="video2.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<video controls>
<source src="video3.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</body>
</html>