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

Previous year question


Sol.-

<html>
<head>
	<title>Practice- Examcomp</title>
</head>
<body>
	<h3> Here we use iframe to show divide two horizontal sections</h3>	
	<iframe src="https://www.youtube.com/embed/SMKPKGW083c" width="49%" height="90%"></iframe>
	<iframe src="https://www.youtube.com/embed/SMKPKGW083c" width="49%" height="90%"></iframe>
</body>
</html>

OUTPUT: