Tags
HTML , iframe
Asked 2 years ago
7 Apr 2022
Views 259
sarah

sarah posted

HTML <iframe> Tag

how HTML <iframe> Tag work ? how to define iframe in HTML ? How to use iframe in HTML ?
css-learner

css-learner
answered Apr 7 '22 00:00

As per the below code, we can define an iframe in HTML


<iframe src="https://arrayoverflow.com" height="600" width="100%" ></iframe>



The <iframe> tag specifies a frame in HTML. one can load the same-origin website/page/document or another website/page/document on the current page by the <iframe> tag .
Post Answer