HTML
[HTML] ๊ธฐ๋ณธ ์ค๋ช
Arr_
2021. 10. 24. 16:15
1. HTML ๊ธฐ๋ณธ ์ฝ๋ ์คํ ๋จ์ถํค : !
- ๋๋ํ๋ฅผ ์ ๋ ฅํ๋ฉด Emmet Abbreviation์ด ์๋์ผ๋ก ๋จ๋๋ฐ ์ด ์ํ์์ ์ํฐ๋ฅผ ๋๋ฅด๋ฉด ๊ธฐ๋ณธ ์ฝ๋๊ฐ ์๋์ผ๋ก ์ ๋ ฅ
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>
2. ์ฃผ์ ์ ๋ ฅ : <!--๋ด์ฉ์ ๋ ฅ-->
- ์ฃผ์์ ์ฃผ๋ก ์ฝ๋์ ๋ํ ์ค๋ช ์ ๋ํด ์์ฑํจ
2-1. ์ด๋ฏธ ์์ฑํ ์ฝ๋๋ฅผ ์ฃผ์ ์ฒ๋ฆฌ ํ๊ณ ์ถ์ ๊ฒฝ์ฐ
(1) ํ ์ค์ธ ๊ฒฝ์ฐ : ์ฃผ์ ์ฒ๋ฆฌํ ์ฝ๋์ ์ปค์๋ฅผ ๋์ ํ "Ctrl + /" ์ ๋ ฅ, ์ฃผ์์ ํด์ ํ๊ณ ์ถ์ ๋๋ ๊ฐ์ ๋ฐฉ๋ฒ์ ์ฌ์ฉ
(2) ์ฌ๋ฌ ์ค์ธ ๊ฒฝ์ฐ : ์ฃผ์ ์ฒ๋ฆฌํ ์ฝ๋๋ฅผ ๋๋๊ทธ ํ ํ "Ctrl + /" ์ ๋ ฅ, ์ฃผ์์ ํด์ ํ๊ณ ์ถ์ ๋๋ ๊ฐ์ ๋ฐฉ๋ฒ์ ์ฌ์ฉ
3. ๊ธฐ๋ณธ ์ฝ๋ ๊ตฌ์ฑ
<!DOCTYPE html>
<html lang="en">
<head> **head : ํ์ฌ ํ์ด์ง๋ฅผ ๊ตฌ์ฑํ๋ ๊ธฐ๋ณธ ์ ๋ณด๋ค์ด ๋ค์ด์์ผ๋ฉฐ ํ๋ฉด์ ๋ณด์ฌ์ง์ง ์์
<meta charset="UTF-8"> **ํ์ฌ ์ธ์ฝ๋ฉ ๋ฐฉ์
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body> **body : ํ๋ฉด์ ๋ณด์ฌ์ง๋ ๋ถ๋ถ
</body>
</html>