| body/Tags | Definitions | Examples |
|---|---|---|
| <img src="link" alt="pic"> | image | |
| <a href="link">… | hyperlink to another page | here |
| <p> <p> | paragraph |
this is a paragraph this is a paragraph |
| <h1> <h2> | headers |
headerheader |
| <em> | emphasized | hello there! |
| <iframe src="link"></iframe> | An HTML iframe is used to display a web page within a web page. | |
| <ol> <li> </li> </ol> | numbered lists |
|
| 0& deg;c & frac12; | HTML entities are special characters. for example, if we want to show <em> on your page, we use HTML entities such as < Water freezes at 0°c. | 0°c ½ |
| <!--this is a comment for us to read (nothing is displayed)--> | A comment for us to read inside the code but it won't show on the website. See? | |
| <br> <hr> | Inserts a single line break and Defines a thematic change in the content | hello there hi there |