Notice
Recent Posts
Recent Comments
Link
«   2024/09   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
Tags
more
Archives
Today
Total
관리 메뉴

재훈재훈

HTML Entities 본문

Computer Engineering/HTML & CSS

HTML Entities

jaehoonx2 2018. 10. 29. 22:46

HTML 엔티티 (Entities) 란?

HTML 언어 내의 일종의 예약어 이다. 특정 캐릭터들, 예를 들어서 tag에 쓰이는 <, > 등은 HTML에 의해 사용되고 있다.

만약 사용자가 <, >을 쓸 경우, 표기의 혼란이 생길 수 있으므로 이 문자들의 경우, 특정한 서식문자로 대체하여 쓴다.

ResultDescriptionEntity NameEntity Number
non-breaking space&nbsp;&#160;
<less than&lt;&#60;
>greater than&gt;&#62;
&ampersand&amp;&#38;
"double quotation mark&quot;&#34;
'single quotation mark (apostrophe)&apos;&#39;
¢cent&cent;&#162;
£pound&pound;&#163;
¥yen&yen;&#165;
euro&euro;&#8364;
©copyright&copy;&#169;
®registered trademark&reg;&#174;


'Computer Engineering > HTML & CSS' 카테고리의 다른 글

How to use frameset tag (example code)  (0) 2018.10.29
CSS Selectors 2  (0) 2018.10.27
CSS Selectors 1  (0) 2018.10.27