10.HTML - yojulab/learn_publicisings GitHub Wiki

  • HTML & CSS ์ •๋ฆฌ

  • Hypertext Markup Language์€ ์›นํŽ˜์ด์ง€ ๊ตฌ์กฐ๋ฅผ ์ง€์ •ํ•˜๋Š” ๊ธฐ์ˆ  ์–ธ์–ด

  • Official Refer : MDN HTML5

  • Learn Refer : - HTML

HTML versions timeline wiki

https://developer.mozilla.org/en-US/docs/Glossary/HTML/anatomy-of-an-html-element.png

  • HTML formatter
<!DOCTYPE html>
<html>
  <head>
    <title>This is a title</title>
  </head>
  <body>
    <div>
        <p>Hello world!</p>
    </div>
  </body>
</html>
  • Block Element : ์–ธ์ œ๋‚˜ ์ค„๋ฐ”๊ฟˆ
  • Inline Element : ์ค„๋ฐ”๊ฟˆ ์—†์Œ
๋ถ„๋ฅ˜ ์„ค๋ช… ๋น„๊ณ 
Basic Defines somethings --
Links Defines links --
Lists Defines list --
Tables Defines a table Some types --
Images Defines Something Drawing Types --
Forms and Input Defines an HTML form for user input --
Styles and Semantics Defines Styles and Semantics Semantic Elements
โš ๏ธ **GitHub.com Fallback** โš ๏ธ