WEB.HTML
chapter20 : iframe_tag
GAWON
2023. 5. 18. 09:23
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<!-- HTML 문서 중간에 다른 HTML 문서 넣기 -->
<div>
<h1>Ex20 본문</h1>
</div>
<div>
<iframe src="Ex01_overview.html"></iframe>
</div>
<div>
<h1>Ex20 본문</h1>
</div>
<!-- HTML 문서 중간에 동영상 넣기 -->
<div>
<iframe width="1280" height="720" src="[https://www.youtube.com/embed/7nQeQHJexqU](https://www.youtube.com/embed/7nQeQHJexqU)" title="[공식] 포켓몬스터W : 내 꿈은 포켓몬마스터 OP 대공개!" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</body>
</html>