HTML Tags

HTML tags are keywords (tag name) that need to come in pairs like <tagname>content</tagname>. actually, in the first tag is the start tag name and second tag is the end tag name. if missing the opening or closing tag, it will invalided tag. All HTML tags are not case-sensitive. Either writing them in lower case or uppercase is valid and workable. the end tag is written like the start tag, but with a slash before the tag name.


Some Tags format text:

- <h1>Content<h1>: Heading text (h1-h6)
- <p>Content</p>: Paragraph
- <b>Content</b>: Bold text
- <i>Content</i>: Italic text
- <u>Content</u>: Underline text
- <strike>Content</strike>: Strike text
- <strong>Content</strong>: Strong text
- <sup>Content</sup>: Superscript text
- <sub>Content</sub>: Subscript text
- <font face="font name" size="size font" color="color font">Content</font>: Format font
- <hr/>: Horizontal text
- <br/>: line break
- <img src="image location"/>: Image
..................................................................................................................................
Example:
<h1>Heading Text1</h1>
<p>Paragraph Text</p>