Write a HTML code to divide browser window into two horizontal sections and play different videos in each section.

Main Part


 

<!DOCTYPE html>

<html>

<head>

      <title>M2-R5.1 Set 2 Question 1</title>

</head>

            <frameset rows=”*,*”>

            <frame name=”a1″ src=”framevideo1.html”></frame>

            <frame name=”a2″ src=”framevideo2.html”></frame>

            </frameset>

</html>

Frame 1 (first video)

 

<!DOCTYPE html>

<html>

<head>

      <title>frame 1 videos</title>

</head>

<body>

      <center>

      <video controls width=”650″>

            <source src=”image/m1r5 email.mp4″ type=”video/mp4″>

      </video>

      </center>

</body>

</html>

Frame 2 (second video)

 

<!DOCTYPE html>

<html>

<head>

      <title>frame 1 videos</title>

</head>

<body>

      <center>

      <video controls width=”650″>

            <source src=”image/OBC form.mp4″ type=”video/mp4″>

      </video>

      </center>

</body>

</html>