10.HTML - yojulab/learn_publicisings GitHub Wiki
-
Hypertext Markup Language์ ์นํ์ด์ง ๊ตฌ์กฐ๋ฅผ ์ง์ ํ๋ ๊ธฐ์ ์ธ์ด
-
Official Refer : MDN HTML5
-
Learn Refer : - HTML
HTML versions timeline wiki
- HTML formatter
<!DOCTYPE html>
<html>
<head>
<title>This is a title</title>
</head>
<body>
<div>
<p>Hello world!</p>
</div>
</body>
</html>
- chrome dev tools : https://developer.chrome.com/docs/devtools/
- 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 |
