HTML is the standard Markup language.
Character entity: are entities that start with an ampersand(&) and followed by an entity name and closed by a semicolon. see some examples of character entities below.
Structure of HTML Document
It stands for HyperText Markup Language.
- H – Hyper
- T- Text
- M – Markup
- L – Language
It used to structure web pages using markup.
HTML has two types of markups:
- Tags: are elements surrounded by angle bracket.
Syntax of tags: <tagname> content</tagname>
There are two types of Html tags.
- Container tags: those types of tags have starting and closing tags.
| Start TAg | end Tag | Description |
|---|---|---|
| <p> | </p> | paragraph |
| <b> | </b> | bold |
| <html> | </html> | opens and closes an HTML document |
| Character | Entity | Discription |
|---|---|---|
| < | < | Less than |
| > | > | Greater than |
| " | " | Double quotation mark |
| (c) | © | Copyright |
Structure of HTML Document



0 Comments