🏷️<body>
태그 안에 들어가는 기본 요소들
📌제목
<h1>
~<h6>
태그로 제목을 나타낼 수 있다.
- h stands for heading
- 제목 태그는 쌍으로 이루어져 있다.
- 🔍ex)
<h3> 글 제목 </h3>
📌문단
<p>
로 문단을 만들 수 있다.
- p stands for paragraph
<p>
도 쌍으로 이루어져 있다.
- 🔍ex)
<p>And be not conformed to this world: but be ye transformed by the renewing of your mind</p>
📌볼드체
<b>
로 볼드체를 사용할 수 있다.
- b stands for bold
<b>
도 쌍으로 이루어져 있다.
- 🔍ex)
구조체와 배열의 가장 큰 <b>차이점</b>은
📌목록
순서가 없는 목록
<ul>
과 <li>
태그로 순서가 없는 목록을 만들 수 있다.
- ul stands for unordered list
- li stands for list
- 🔍ex)
<ul>
<li>C언어</li>
<li>Java</li>
<li>Python</li>
</ul>
순서가 있는 목록
<ol>
과 <li>
태그로 순서가 있는 목록을 만들 수 있다.
- ol stands for ordered list
- 🔍ex)
<ol>
<li>C언어</li>
<li>Java</li>
<li>Python</li>
</ol>