xxoyeong 2020. 8. 29. 21:29

효과적으로 다른 HTML 페이지를 현재 페이지에 포함시키는 중첩된 브라우저로

iframe 요소를 이용하면 해당 웹 페이지 안에 어떠한 제한 없이 다른 페이지를 불러와서 삽입 할 수 있다.


문법 

<iframe src="삽입할페이지주소" width="너비" height="높이"></iframe> 

 

예시 

<iframe src="./intro.html" width="300" height="300"></iframe>



Google Maps Embed API 사용 

<iframe
  너비 = "600"
  높이 = "450"
  frameborder = "0"style = "border : 0"
  src = "https://www.google.com/maps/embed/v1/place?key=API_KEY
    & q = Space + Needle, Seattle + WA "allowfullscreen>
</ iframe>