HTML 태그 - iframe
본문
HTML 태그 - iframe
<iframe>태그는 문서내에 다른 html문서를 포함할 때 사용합니다.
속성
src : 프레임에 불러올 페이지의 url을 지정합니다.
frameborder : 프레임의 경계선을 나타냅니다. html4만 지원.
marginheight, marginwidth : 프레임 너비와 높이의 여백 지정합니다. html4만 지원.
샘플
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="author" content="코리아뉴스" />
<title> html공부 </title>
<link rel="stylesheet" type="text/css" href="default.css" / >
<style type="text/css">
body {
color:red;
}
</style>
</head>
<body>
<section>
<h1>iframe태그</h1>
<iframe src="sample.html" width="300" height="400">
<p> 이 브라우저는 iframe을 지원하지 않습니다. </p>
</iframe>
</section>
<div id="related">
<p>영역 </p>
</div>
<footer>
<address> 전화 : 031-574-3659, E-mail : master@koreanews.com </address>
Copyright ⓒ 2013 Koreanews co., All Rights Reserved.
</footer>
</body>
</html>
- 이전글HTML 태그 - i 14.12.11
- 다음글HTML 태그 - html 14.12.11