30Days of HTML CSS

[30Days of HTML CSS] Day 05 | Figure Tag Lab

하나둘세현 2023. 11. 21. 19:07
728x90

<!DOCTYPE html>
<html>
	<head>
		<title>Figure Tag Lab</title>
		<style>
			/* Add styles here */
			#myCaption { font-style: italic; }
		</style>
	</head>
	<body>
		<!-- Write your code here -->
		<figure id = "myFigure">
			<figcaption id="myCaption">This is my sample figure caption</figcaption>
		</figure>
		<img src="https://img.freepik.com/free-photo/dozing-lamb-in-the-springtime-resting-in-a-field_493961-411.jpg" alt="" id="figureImage">
	</body>
</html>

 

figure태그가 무엇인지 딱 안떠올랐다.

figure 태그는 독립적인 콘텐츠를 설명하는 태그라고 한다.

 

figure 태그로 figcaption 태그를 감싼다.

figcaption 태그는 제목이나 설명글을 나타낼 수 있다.

 

https://recordoftheday.tistory.com/entry/HTML-%EB%AA%A9%EB%A1%9D%EC%9D%84-%EB%A7%8C%EB%93%9C%EB%8A%94-%ED%83%9C%EA%B7%B8

 

[HTML] 목록 요소 | 표를 만드는 순서

목록 요소 태그? 점으로 표시되는 목록, 정렬되지 않은 목록 태그? 목록 만들기 태그를 사용하고 태그를 사용한다. 순서 없는 목록의 경우, 각 항목앞에 작은 원이나 사각형 같은 불릿(bullet)이 붙

recordoftheday.tistory.com

 

https://codedamn.com/challenge/30-days-of-html-css

 

30 Days of HTML CSS - Codedamn

Level up your coding skills with a daily coding challenge. Compete and share your progress every day and become a better developer.

codedamn.com

 

728x90