Practical – 113.12 : Use of Video Tag (Video ટેગ્સનો ઉપયોગ)

Practical-113.12

Program Code : 

<!DOCTYPE html>

<html>

<head>

    <title>ITI Video Tag Example</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            margin: 30px;

            background-color: #f2f2f2;

        }

        h1 {

            color: #005580;

        }

        .video-container {

            background-color: #ffffff;

            border: 2px solid #005580;

            border-radius: 10px;

            padding: 20px;

            width: fit-content;

        }

    </style>

</head>

<body>

    <h1>ITI Training Video</h1>

    <div class=”video-container”>

        <p><strong>Watch the safety training demo:</strong></p>

        <video width=”500″ height=”300″ controls>

            <source src=”safety-training.mp4″ type=”video/mp4″>

            Your browser does not support the video tag.

        </video>

    </div>

</body>

</html>