Iframes
<!-- src/height/width/frameborder/title/loading/name/allowfullscreen/allowpaymentrequest -->

<iframe 

src="https://www.wikipedia.org/" 
height="550px" 
width="850px" 
frameborder="1" 
title="wikipedia platform" 
loading="lazy"
name="frame123"
allowfullscreen
allowpaymentrequest="true">

</iframe>

<!-- srcdoc -->

<iframe  

src="https://www.wikipedia.org/" 
srcdoc="<p> Hello World HTML! </p>" 
frameborder="1" 
height="150px" 
width="200px">

</iframe>
iframe ekak hadanne me widiyata
9.<iframe> target
<!--parent-->

<!--------------page1--------------->
  <iframe src="two.html" frameborder="2" width="600px" height="500px"></iframe>
<!--------------page2--------------->
  <iframe src="three.html" frameborder="1" width="400px" height="300px"></iframe>
<!--------------page3--------------->
  <a href="https://www.youtube.com/" target="_parent">parent click</a>

<!--top-->

<!--------------page1---------------->
  <iframe src="two.html" frameborder="2" width="600px" height="500px"></iframe>
<!--------------page2---------------->
  <a href="https://www.youtube.com/" target="_top">Top click</a>
  
  
<!-- framename -->

  <a href="https://www.wikipedia.org/wiki/Vincent_van_Gogh" 
   target="frame">Vincent Van Gogh</a> <br/> <br/>

  <iframe name="frame" style="width:100%;height:450px;"
        src="https://en.wikipedia.org/wiki/Main_Page"> 
  </iframe>
        
iframe athule link විවෘත කළ යුතු ස්ථානය නියම kirima saha link විවෘත kirima meken adahas we
13.<iframe> sandbox
<!--No support Script Run -->
<iframe src="demo_iframe_sandbox.htm" sandbox>
  <p>Your browser does not support iframes.</p>
</iframe>

<!--support Script Run -->
<iframe src="demo_iframe_sandbox.htm" sandbox="allow-scripts">
  <p>Your browser does not support iframes.</p>
</iframe>
sandbox attribute eka pamanak labadi ඇති බැවින්, iframe අන්තර්ගතයට script ධාවනය කිරීමට අවසර නැත. awasara labadimata sandbox sadaha “allow-scripts” labadiya yuthuya
14.<iframe> referrerpolicy
empty ( mukuth nehe w3 eke code eka copy karala dunne methanata)
<iframe src="https://w3schools.com/" referrerpolicy="no-referrer">
  <p>Your browser does not support iframes.</p>
</iframe>
iframe ලබා ගැනීමේදී යැවිය යුතු යොමුකරු තොරතුරු නියම කරයි.
Scroll to Top