<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Looping Video</title>

    <style>

        body, html { margin: 0; padding: 0; height: 100%; }

        video { width: 100%; height: 100%; object-fit: cover; }

    </style>

</head>

<body>

    <video autoplay loop controls>

        <source src=“mogulplex.mp4" type="video/mp4">

        Your browser does not support the video tag.

    </video>

</body>

</html>