Edit This Code:
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../lib/w3.css">
<link rel="stylesheet" href="../lib/w3-theme-red.css">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">
<body style="max-width:400px">

<header class="w3-container w3-card-4 w3-theme">
  <h1><i class="fa fa-bars"></i> Header</h1>
</header>

<div class="w3-container">
<hr>
<div class="w3-row">
  <div class="w3-col s3">
    <img src="img_avatar.jpg" alt="avatar" style="width:100%">
  </div>
  <div class="w3-col s9 w3-container">
    <h3>Frozen</h3>
    <p>The response to the animations was ridiculous.</p>
  </div>
</div>  
<hr>
<div class="w3-row">
  <div class="w3-col s3">
    <img src="img_avatar.jpg" alt="avatar" style="width:100%">
  </div>
  <div class="w3-col s9 w3-container">
    <h3>The Fault in Our Stars</h3>
    <p>Touching, gripping and genuinely well made.</p>
  </div>
</div>
<hr>
<div class="w3-row">
  <div class="w3-col s3">
    <img src="img_avatar.jpg" alt="avatar" style="width:100%">
  </div>
  <div class="w3-col s9 w3-container">
    <h3>The Avengers</h3>
    <p>A huge success for Marvel and Disney.</p>
  </div>
</div>
<hr>
</div>

<footer class="w3-container w3-theme">
  <h3>Footer</h3>
</footer>

</body>


Result:
Try it Yourself - © w3schools.com
Privacy Policy