Q:

Write HTML code to place the following web page into your web page

belongs to collection: HTML5 programming Exercises

0

Write HTML code to place the following web page into your web page

https://nerdutella.com/

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Solution

Iframe is used to embed an HTML document inside another HTML document on a website. It requires the start and end tags <iframe>..</iframe> and a target source attribute that specify the URL of a document to display in an iframe. We can also specify the size of the iframe using height and width attributes. Iframe also has other attributes, like scrolling, align, frameborder, vspace to enhance the appearance of iframe.

This is the following HTML5 code to place the iframe into a webpage.

<p>Embedding a web page using iframe</p>
<iframe src="https://nerdutella.com/"  width="700" height="400">
</iframe>

Output of the above code

Embedding a web page using iframe

like a screen:

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Draw a square using HTML5 SVG, fill that square wi... >>
<< Write HTML code to embed the following video in we...