Skills/HTML5
220830 img_tag_test.html
개발자 윤구나
2022. 9. 4. 00:53
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>img_tag_test</title>
<style>
img {
width: 100px;
}
</style>
</head>
<body>
<h2><a href="https://www.naver.com">실시간 이슈검색어</a></h2>
<ol type="1">
<li><a href="https://www.naver.com">1</a> new</li>
<li><a href="https://www.naver.com">2</a> new</li>
<li><a href="https://www.naver.com">3</a> 999 상승</li>
<li><a href="https://www.naver.com">4</a> new</li>
<li><a href="https://www.naver.com">5</a> 98 상승</li>
<li><a href="https://www.naver.com">6</a> new</li>
<li><a href="https://www.naver.com">7</a> new</li>
<li><a href="https://www.naver.com">8</a> new</li>
<li><a href="https://www.naver.com">9</a> new</li>
<li><a href="https://www.naver.com">10</a> new</li>
</ol>
<hr color="grey"/>
<h2>
<a href="http://www.naver.com">카페</a>
<a href="https://www.naver.com">블로그</a>
</h2>
<ul>
<li>
<a href="https://www.naver.com">
<img src="./images/bg01.jpg" />왕초보도 맛있게 김치 감자탕 비법
</a>
</li>
<li>
<a href="https://www.naver.com">
<img src="./images/bg02.jpg" />하얗게 눈 덮인 지리산에서
</a>
</li>
<li><a href="https://www.naver.com">당면 없이도 잡채 맛 그대로</a></li>
<li><a href="https://www.naver.com">우리 집 다육 밥상 보여 드려요</a></li>
</ul>
</body>
</html>