
평문(plain text) : 일반적인 텍스트
Inline Elements : 자기 크기 만큼만 사이즈를 확보
Block Elements : 블락을 확보
1. Space키는 1번만 인식됨
- 여러번 space키를 눌러도 딱 1칸만 이동하고 이동하지 않음
<!DOCTYPE html>
<html>
<head>
<title>Document</title>
</head>
<body>
Hello World
</body>
</html>

<!DOCTYPE html>
<html>
<head>
<title>Document</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
2. Enter 키로 줄을 바꿀 수 없음
- 1칸 옆으로 이동만 가능함

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
HelloWorld
Bye
Hello My name is cos
</body>
</html>

Share article