Javascript: HTML 기초 - <pre>, <article>

HS·2021년 2월 4일
0

Javascript

목록 보기
2/3
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"> <!--다국어 표시-->
<title>Insert title here</title>
</head>
<body>

<pre>
1.블로그 포스팅,언론 잡지등의 기사, 댓글, 질의응답 등에 쓰임
2.독립적 구성
3.header, footer, section 를 포함하기도 하며, section에 포함될 수도 있다.
</pre>
	<article>
		<a href="https://www.nytimes.com/">The New York Times</a> <br /> 하이퍼링크
	</article>
	<header>
		<h1>HTML5</h1>
	</header>
	<section>
		<h1>javascript</h1>
	</section>
	<section>
		<h1>javascript</h1>
		<article>
			<section>
				<h1>javascript</h1>
				<h1>css</h1>
			</section>
		</article>
	</section>
</body>
</html>

출력물

0개의 댓글