프론트엔드/HTML
HTML 17 <img>태그로 이미지 삽입하기
스펀지연구소
2021. 3. 18. 15:46
금계국
금계국은 북아메리카 원산이며 관상용으로 화단에서 재배한다. 6~8월에 지름 2.5~5cm 노란꽃이줄기와 가지 끝에 한 송이씩 핀다. 물 빠짐이 좋은 모래흙이나 마사토에서 잘 자란다.
<!DOCTYPE html>
<html lang="en">
<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>야생화</title>
</head>
<body>
<h3>금계국</h3>
<img src="https://upload.wikimedia.org/wikipedia/commons/a/ab/Coreopsis_basalis_4514.jpg" width=300><br>
<p>금계국은 북아메리카 원산이며 관상용으로 화단에서 재배한다.
6~8월에 지름 2.5~5cm 노란꽃이줄기와 가지 끝에 한 송이씩 핀다.
물 빠짐이 좋은 모래흙이나 마사토에서 잘 자란다.</p>
</body>
</html>