Lecture 6 (Morning)

 <html>


<head>

</head>

<body>

    <table align="center" cellpadding="10">
        <tr>
            <th>
                <a href="index.html">
                    Home
                </a>
            </th>
            <th>
                <a href="#calculator">
                    Calculator
                </a>
            </th>
            <th>
                <a href="#img">
                    Image
                </a>
            </th>
            <th>
                <a href="#vd">
                    Video
                </a>
            </th>
        </tr>
    </table>
    <br>
    <table border="1" cellspacing="0" cellpadding="10" align="center" width="80%" height="90%">
        <tr height="20%">
            <td colspan="3">Header</td>
        </tr>
        <tr>
            <td width="10%">Left Sidebar</td>
            <td>
                <iframe
                    src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2Fcareerinstituteofficials%2F&tabs=timeline&width=450&height=500&small_header=false&adapt_container_width=true&hide_cover=false&show_facepile=true&appId"
                    width="450" height="500" style="border:none;overflow:hidden" scrolling="no" frameborder="0"
                    allowfullscreen="true"
                    allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"></iframe>
            </td>
            <td>
                <iframe
                    src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d13615.314803192214!2d73.08027640781246!3d31.446382500000013!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3922696ac9459bed%3A0x4d837d0ef403530e!2sCareer%20Institute%20-%20Millat%20Chowk%20Campus%20(CIFSD03)!5e0!3m2!1sen!2s!4v1647319516260!5m2!1sen!2s"
                    width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>

            </td>
        </tr>
        <tr height="20%">
            <td colspan="3">
                <center>
                    <iframe
                        src="https://www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2Fcareerinstituteofficials%2F&width=138&layout=button&action=like&size=large&share=true&height=65&appId"
                        width="138" height="65" style="border:none;overflow:hidden" scrolling="no" frameborder="0"
                        allowfullscreen="true"
                        allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"></iframe>
                </center>
            </td>
        </tr>

    </table>

    <hr>
    <h3 align="center" id="calculator">
        Calculator
    </h3>
    <table cellspacing="0" cellpadding="10" align="center" border="1" height="300" width="500">
        <tr bgcolor="blue">
            <td colspan="4" align="right">0</td>
        </tr>
        <tr>
            <td>+</td>
            <td>-</td>
            <td>x</td>
            <td>/</td>
        </tr>
        <tr>
            <td>7</td>
            <td>8</td>
            <td>9</td>
            <td rowspan="4" bgcolor="grey">=</td>
        </tr>
        <tr>
            <td>4</td>
            <td>5</td>
            <td>6</td>
        </tr>
        <tr>
            <td>1</td>
            <td>2</td>
            <td>3</td>
        </tr>
        <tr>
            <td>0</td>
            <td>.</td>
            <td>C</td>
        </tr>

    </table>

    <br>
    <br>

    <h3 align="center" id="img">
        Offline Image
    </h3>
    <center>

        <!-- offline image -->
        <img src="../../images/profile.jpg" alt="Image not found" height="400" width="500">
    </center>



    <h3 align="center" id="vd">
        Video
    </h3>
    <center>
        <video src="../lecture3/video/vd.mp4" controls loop height="500" width="500"></video>

    </center>

</body>

</html>

Comments