HTML Introduction

HTML Basic Syntax

HTML Block Element

HTML Formatting

HTML Quotation

HTML Links

HTML List

HTML Table

HTML Audio

HTML Video

HTML Image

HTML Iframe

HTML Favicon

HTML Form

HTML Input Types

HTML Marquee

HTML Meta tag

Learn CSS

Learn Javascript

Learn Django

All you need to learn about HTML formatting

What is formatting tag and why it used?

Suppose we have a paragraph. In the paragraph, we want to show some text differently. In this case, formatting tags are used. So we can say that to show or display a text differently we use formatting tags. We put that text(which we want to show differently) inside the formatting tag.

List of formatting tag

1. <mark> -> Used to mark text.
2. <small> -> Used to make the text smaller.
3. <del> -> Used to delete text.
4. <b> -> Used to make the text bold.
5. <sub> -> Used to subscript text.
6. <sup> -> Used to superscript text.
7. <strong> -> Used to make the text strong.
8. <i> -> Used to make the text italic text.
9. <em> -> Used to text emphasize the text.
10. <ins> -> Used to inserted text.
11. <br>->To give line break this tag is used.
14. <select>:

Example:

<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>

<h2>This is a <b>free </b> educational website</h2>

<h2>This is a <i>free </i> educational website</h2>

<h2>This is a <strong>free </strong> educational website</h2>

<h2>This is a <small>free </small> educational website</h2>

<h2>This is a <em>free </em> educational website</h2>

<h2>This is a <mark>free </mark> educational website</h2>

<h2>This is a <ins>free </ins> educational website</h2>

<h2>This is a <del>free </del> educational website</h2>

<h2>This is a <sub>free </sub> educational website</h2>

<h2>This is a <sup>free </sup> educational website</h2>

</body>
</html>

CodersAim is created for learning and training a self learner to become a professional from beginner. While using CodersAim, you agree to have read and accepted our terms of use, privacy policy, Contact Us

© Copyright All rights reserved www.CodersAim.com. Developed by CodersAim.