Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

HTML Entities

HTML Character Entities

Certain characters are reserved in HTML, and using symbols like less than (<) or greater than (>) may cause the browser to interpret them as tags. To prevent this, entity names or numbers can be used to represent these reserved characters. Entity names follow this structure:

&entity_name;

Entity numbers are represented in this format:

&#entity_number;

To display a less than sign (<), we must write it as < or as <.

Entity names are simpler to recall compared to entity numbers.