Answer No : 19 :
File Named :  Home.html

<frameset rows="100%">
 
    <frameset cols="25%,25%,25%,25%">
            <frame name="A" src="link.html">
             <frame name="B" src="File1.html">
             <frame name="C" src="File2.html">
             <frame name="D" src="File3.html">
    </frameset>

      </frameset>
</frameset>


File Named :  link.html

<html>
<body>
  <h3>Link</h3>
  <a href="File1.html" target="B">
   File1
  </a><br>
  <a href="File2.html" target="C">
    File2
  </a><br>
  <a href="File3.html" target="D">
    File3
  </a><br>

</body>
</html>

File Named :  File1.html

<html>
<body>
  <p style="text-align: center">
  File 1 Matter
  </p>
  
</body>
</html>

File Named :  File2.html

<html>
<body>
  <p style="text-align: center">
  File 2 Matter
  </p>
  
</body>
</html>


File Named :  File3.html

<html>
<body>
  <p style="text-align: center">
  File 3 Matter
  </p>
  
</body>
</html>
Output: