I am trying to ensure that the height on the left side matches the height on the right, so it's important that it looks good on various devices like tablets, PCs, etc. However, when I resize my browser window, the video on the right side shrinks while the text on the left remains unchanged.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row" style="background-color:lavender;">
<div class="col-sm-9" style="background-color:lavender;">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="http://youtube.com/embed/BG9rW-hYikw?autoplay=1&loop=1&playlist=BG9rW-hYikw" allowfullscreen></iframe>
</div>
</div>
<div class="col-sm-3" align="middle" style="background-color:lavender;">
<div id="header">
<img src="https://lh5.googleusercontent.com/-zeb_mXjp28c/VCoaTmC6JmI/AAAAAAAADuQ/wUXv4gILN_s/w1043-h225-no/30-logo-freecyberscom-baru.png" height="50" /><p><br></p>
</div>
<div>
<marquee direction="up" behaviour="scroll" scrollamount="3" height="474px">
<ul>
<li><strong><p align="justify">I was wondering if it's possible</strong> to create HTML Rolling Credits in a website. If so, how do I need to do? Thanks</p></li><br/>
...
</ul>
</marquee>
</div>
</div>
<div class="row" style="background-color:lightblue;" width="1024px">
<img class="img-responsive" src="C:\Users\hendra\Downloads\logo2.jpg" height="500px">
</div>
</div>
</body>
</html>