HTML 기본 요소

  1. 기본 형식
  2. 글자 크기
  3. Tag 태그
    1. List 리스트
      1. <li> list
      2. <ul> unordered list <li>
      3. <ol> ordered list <li>
    2. <a> (Anchor)
    3. img 이미지

기본 형식

기본형식


글자 크기

image description

기본적으로 h1에서 h6까지만 존재한다.


Tag 태그

List 리스트

<li> list

image description

    <li>apple</li>
    <li>banana</li>
    <li>orange</li>

<ul> unordered list <li>

image description

    <ul>
        <li>apple</li>
        <li>banana</li>
        <li>orange</li>
    </ul>

<ol> ordered list <li>

image description

    <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>

Go to Google

target: blank 링크를 새창에 열기

  <a href="https://google.com" target="_blank">Go to Google</a>

📌 default 값은 <target="_self"> 로 현재창에서 링크를 연다.

Go to Google


img 이미지

img src="이미지 주소" or img src="로컬에 저장된 이미지 경로"


참고

  • HTML Elements
  • Nomad Coders

    Continue with HTML Head 설정