Lecture 3 (Evening)

 <html>

    <head>
        <title>
            Home
        </title>
    </head>
    <body>
       
        <table align="center" border="1" cellpadding="10" cellspacing="0" height="500" width="500">
            <caption>Lecture for colspan and rowspan</caption>
            <tr>
                <th colspan="4" align="right" bgcolor="blue" style="color: white;">
                    0
                </th>                
            </tr>
            <tr bgcolor="grey" style="color:white;">
                <th>+</th>
                <th>-</th>
                <th>x</th>
                <th>/</th>
            </tr>
            <tr>
                <th>7</th>
                <th>8</th>
                <th>9</th>
                <th rowspan="4" bgcolor="orange" style="color:white;">=</th>
            </tr>
            <tr>
                <th>4</th>
                <th>5</th>
                <th>6</th>
            </tr>

            <tr>
                <th>1</th>
                <th>2</th>
                <th>3</th>
            </tr>
            <tr>
                <th>0</th>
                <th>.</th>
                <th>C</th>
            </tr>
        </table>

        <h2 align="center">Bilal Javed</h2>
        <center>
            <h4 align="center">
                online image
            </h4>
            <img src="https://images.unsplash.com/photo-1529665253569-6d01c0eaf7b6?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8M3x8cHJvZmlsZXxlbnwwfHwwfHw%3D&w=1000&q=80" alt="Image not Found" height="400" width="500">
<hr>
<h4 align="center">Offline Image</h4>

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

        <audio src="audio/sound.mp3" controls loop></audio>

        <center>
            <video src="video/vd.mp4" controls height="400" width="400"></video>
            <hr>
            <iframe width="560" height="315" src="https://www.youtube.com/embed/IGQBtbKSVhY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" ></iframe>

        </center>
    </body>
</html>

Comments