HTML program to divide a web page into 2 rows and second into 3 columns using frameset

HTML program to divide a web page into 2 rows and second into 3 columns using frameset and its attributes and showing text links in first column, ordered list in second column and image in third column.

SOURCE CODE

home.html

<html>
<frameset rows="*, *">
    <frame src="frame1.html">
        <frameset cols="*, *, *">
            <frame src="text-links.html">
                <frame src="ordered-list.html">
                    <frame src="image.jpg">
        </frameset>
</frameset>
</html>

frame1.html

<html>
<body>
    <h1>Frame 1</h1>
    <p>Contents of Frame 1</p>
</body>
</html>

text-links.html

<html>
<body>
    <a href="https://msbte.org.in/"> MSBTE </a><br>
    <a href="https://www.google.com/"> Google </a><br>
    <a href="https://in.yahoo.com/"> Yahoo </a>
</body>
</html>

Ordered-list.html

<html>
<body>
    <ul>
        <li>One</li>
        <li>Two</li>
        <li>Three</li>
    </ul>
    <ol>
        <li>Milk</li>
        <li>Coffee</li>
        <li>Tea</li>
    </ol>
</body>
</html>

OUTPUT