HTML 소스를 보다보면 <, & 와 같은 요소들이 있다.
사실 이는 < 와 &를 나타냄.
HTML은 <를 보면 문자로 여기지 않고 태그로 여겨서 에러가 날수도 있다. 이러한 특수 문자를 표현하기 위한 것이 HTML 엔티티!
<--<
>-->
띄어쓰기(공백) --
&--&
"--"
'--'
©--©
👉 예시 :

<p>
A <strong>semantic element</strong> clearly describes its meaning to both the browser and the developer.
Examples of non-<strong>semantic elements</strong>:
<div> and <span> -
Tells nothing ...
</p>