Notice
Recent Posts
Recent Comments
Link
«   2024/07   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter20 : iframe_tag 본문

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>

'WEB.HTML' 카테고리의 다른 글

chapter19 : form_tag_test2  (0) 2023.05.18
chapter18 : form_tag_test1  (0) 2023.05.18
chapter17 : form_tag  (0) 2023.05.18
chapter16 : a_tag  (0) 2023.05.18
chapter15 : font  (0) 2023.05.18