반응형
Q>
<iframe>과 <ul> 태그를 이용해 HTML 소스를 작성하시오.
A>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<iframe src="https://developer-ankiwoong.tistory.com/" style="width:100%; height:400px;"
name="frame_target"></iframe>
<ul>
<li><a href="https://www.naver.com" target="frame_target">네이버</a></li>
<li><a href="https://www.daum.net" target="frame_target">다음</a></li>
<li><a href="https://www.nate.com" target="frame_target">네이트</a></li>
</ul>
</body>
</html>
https://developer.mozilla.org/ko/docs/Web/HTML/Element/iframe
R>
|
반응형
'Python_WEB > HTML' 카테고리의 다른 글
[Ch3]HTML5 멀티미디어와 입력 양식 - 연습문제 4 (0) | 2020.11.06 |
---|---|
[Ch3]HTML5 멀티미디어와 입력 양식 - 연습문제 3 (0) | 2020.11.06 |
[Ch3]HTML5 멀티미디어와 입력 양식 - 연습문제 1 (0) | 2020.11.06 |
[Ch2]HTML5 기본 요소 - 연습문제 8 (0) | 2020.11.03 |
[Ch2]HTML5 기본 요소 - 연습문제 7 (0) | 2020.11.03 |