Html Target Attribute

Course Content

6. HTML iframe element| HTML Tutorial In Hindi/Urdu #7

Code page1.html as described/written in the video



                                    
 <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>page1</title>
</head>
<body>
    <h2>i am page1.html</h2>
    <iframe src="page2.html"  title="page2" style="height: 300px; width:600px; border:2px solid blue"></iframe>
</body>
</html>



                                    

Code page2.html as described/written in the video



                                    

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>page2</title>
</head>
<body>
    <h2>i am page2.html</h2>
    <iframe src="page3.html" title="page3" style="height: 150px; width:500px; border:2px solid red"></iframe>
</body>
</html>



                                    

Code page3.html as described/written in the video



                                    

 <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>page 3</title>
</head>
<body>
    <h2>i am page3.html</h2>
    <a href="https://www.technicalsyed.com/all%20tutorials/html5/html-video-tutorial-1.php" target="_self">Click _self</a><br>
    <a href="https://www.technicalsyed.com/all%20tutorials/html5/html-video-tutorial-1.php" target="_blank">Click _blank</a><br>
    <a href="https://www.technicalsyed.com/all%20tutorials/html5/html-video-tutorial-1.php" target="_parent">Click _parent</a><br>
    <a href="https://www.technicalsyed.com/all%20tutorials/html5/html-video-tutorial-1.php" target="_top">Click _top</a>
</body>
</html>



                                    

Comments(1)

aaqil 1 month, 3 weeks ago
thanks for giving this free course

Resources

No downloadable resources for this video. If you think you need anything, please post it in the QnA!

    Course Announcements

    Any Course related announcements will be posted here