Daily coding
HTML : Tags - iframe i프레임 본문
iFrame : web page in web page
width * height만큼의 공간에 html 파일 혹은 웹사이트를 불러올 수 있다.
보안이슈로 잘 안될 수 있음
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
iFrame : web page in web page<br>
width * height만큼의 공간에 html 파일 혹은 웹사이트를 불러올 수 있다.<br>
보안이슈로 잘 안될 수 있음
<h3>index 1</h3>
<iframe src="index.html" width="400" height="300"></iframe>
<iframe src="http://google.com" width="400" height="300"></iframe>
</body>
</html>
'Front-end > Client' 카테고리의 다른 글
HTML : Tags - Video 비디오 (0) | 2020.01.03 |
---|---|
웹 - 아파치 톰캣 설정방법 (0) | 2020.01.03 |
HTML : Tags - List 리스트 (0) | 2020.01.03 |
HTML : Basic 1 - table (0) | 2020.01.02 |
HTML : Basic 1 - img (0) | 2020.01.02 |