Skip to content
FREE EXPRESS SHIPPING AUSTRALIA WIDE ON ORDERS OVER $200
AFTERPAY & ZIPPAY AVAILABLE

video section

<html>

<head>

<style>

.container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
border: 1px solid #ccc;
padding: 10px;
}

video {
width: 50%;
height: auto;
}

.content {
width: 45%;
margin: 0 10px;
}

</style>

</head>

<body>

<div class="container">
<video controls>
<source src="path/to/video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="content">
<h2>Video Title</h2>
<p>Description of the video</p>
</div>
</div>

</body>

</html>