Programming Language/HTML | CSS | JS

HTML 4์ผ์ฐจ ๊ณต๋ถ€

chaerlo127 2022. 1. 10. 18:36
728x90
728x90

1. HTML Text Formatting

<!DOCTYPE html>
<html lang="eng">
    <head></head>
    <body>
        <p> <b> hello</b></p>
        <p> <strong> hello</strong></p>
        <hr>
        <p><i>hello</i></p>
        <p><em>hello</em></p>
        <hr>
        <p><sub>hello</sub> <mark> how are you</mark><sup> Web Programming</sup></p>
        <hr>
        <p><small>it's small font</small></p>
        <hr>
        <p><del>delete</del> <ins>font</ins>  </p>
    </body>
</html>

 

<๋ณต์Šต>

  • <sub></sub>
  • <sup></sup>
  • <i></i> : ๊ธฐ์šธ๊ธฐ, ์ฃผ์œ„ ๊ตฌ๋ถ„
  • <em></em> : ๊ฐ•์กฐํ•˜๊ณ  ์‹ถ์„ ๋•Œ
  • <b></b> : ๊ตต๊ธฐ ๊ตต๊ฒŒ
  • <strong></strong> : ์ค‘์š”ํ•œ ๋ถ€๋ถ„ ๊ตต๊ฒŒ
  • <small></small>
  • <mark></mark>: ํ˜•๊ด‘ํŽœ , ์ค‘์š”ํ•œ ๋ถ€๋ถ„
  • <del></del> : ์ง€์šฐ๊ธฐ
  • <ins></ins> : ์ค„ ๊ธ‹๊ธฐ

 

 

2. HTML Quotations[์ธ์šฉ๋ฌธ]

<!DOCTYPE html>
<html lang="eng">
    <head></head>
    <body>
        <h1>HTML studying</h1>
        <!-- blockquote -->
        <blockquote cite="https://monynony0203.tistory.com/17?category=1033374"> html study </blockquote>
        <!-- quote -->
        <p>hello, <q>html study</q></p>
        <!-- abbr -->
        <p> <abbr title="Structured Query Language">SQL</abbr></p>
        <!-- address -->
        <address>
            Written by John Doe.<br>
        </address>
        <!-- cite -->
        <p><cite>Monarisa</cite> by Leonardo da Vinci</p>
        <!-- left to right -->
        <bdo dir="ltr">This line will be written from right to left</bdo>
        <!-- rigth to left -->
        <bdo dir="rtl">This line will be written from right to left</bdo>
    </body>
</html>

 

  • <blockquote></blockquote> : ์ธ์šฉ ๋ธ”๋Ÿญ, cite: ์ธ์šฉ๋ฌธ ์ถœ์ฒ˜
  • <q></q>: ์งง์€ ์ธ์šฉ๋ฌธ
  • <abbr></abbr>
  • <address></address> : ํƒœ๊ทธ๋Š” ๋ฌธ์„œ๋‚˜ ๊ธ€์˜ ์ €์ž ๋˜๋Š” ํšŒ์‚ฌ์™€ ์—ฐ๋ฝํ•  ์ˆ˜ ์žˆ๋Š” ์ •๋ณด๋ฅผ ๋ช…์‹œํ•  ๋•Œ ์‚ฌ์šฉ, ํ•ด๋‹น ๋ฌธ์„œ์˜ ์—ฐ๋ฝ ์ •๋ณด
  • <cite></cite>์ฑ…์ด๋‚˜ ์Œ์•…, ์˜ํ™”, ์˜ˆ์ˆ  ์ž‘ํ’ˆ ๋“ฑ๊ณผ ๊ฐ™์€ ์ฐฝ์ž‘๋ฌผ์˜ ์ œ๋ชฉ์„ ์ •์˜
  • <bdo></bdo> Bi-Directional Override, ์ž์‹ ์š”์†Œ์˜ ํ…์ŠคํŠธ ๋ฐฉํ–ฅ์„ฑ(text directionality)์„ ์ •์˜ํ•  ๋•Œ ์‚ฌ์šฉ
728x90