HTML 기본 요소
기본 형식

글자 크기

기본적으로 h1에서 h6까지만 존재한다.
Tag 태그
List 리스트
<li> list
<li>apple</li>
<li>banana</li>
<li>orange</li>
<ul> unordered list <li>

<ul>
<li>apple</li>
<li>banana</li>
<li>orange</li>
</ul>
<ol> ordered list <li>

<ol>
<li>apple</li>
<li>banana</li>
<li>orange</li>
</ol>
<a> (Anchor)
- URL을 Link로 만드는 태그
href (hypertext reference) 웹사이트 링크
<a href="https://google.com">Go to Google</a>
target: blank 링크를 새창에 열기
<a href="https://google.com" target="_blank">Go to Google</a>📌 default 값은
<target="_self">로 현재창에서 링크를 연다.
img 이미지
img src="이미지 주소"orimg src="로컬에 저장된 이미지 경로"
참고
Continue with HTML Head 설정
