HTML, html css tutorial for beginners, html css full course, html css, html full course, html for beginners, css full course, css tutorial for beginners

HTML formatting tags ka use karke text ko different styles aur emphasis ke sath display kiya ja sakta hai. Yeh tags text ko visually attractive banane aur readability improve karne ke liye use hote hain.

Kuch commonly used HTML formatting tags:

1. **Bold text:**
    ```html
    <b>This text is bold.</b>
    <strong>This text is strong.</strong>
    ```

2. **Italic text:**
    ```html
    <i>This text is italic.</i>
    <em>This text is emphasized.</em>
    ```

3. **Underlined text:**
    ```html
    <u>This text is underlined.</u>
    ```

4. **Strikethrough text:**
    ```html
    <s>This text is strikethrough.</s>
    <del>This text is deleted.</del>
    ```

5. **Subscript and superscript:**
    ```html
    H<sub>2</sub>O (subscript)
    X<sup>2</sup> (superscript)
    ```

6. **Inserted and deleted text:**
    ```html
    <ins>This text is inserted.</ins>
    <del>This text is deleted.</del>
    ```

7. **Small text:**
    ```html
    <small>This text is small.</small>
    ```

8. **Marked/highlighted text:**
    ```html
    <mark>This text is highlighted.</mark>
    ```

Example of using these tags together:

```html
<!DOCTYPE html>
<html>
<head>
    <title>HTML Formatting Tags</title>
</head>
<body>
    <p><b>This text is bold.</b></p>
    <p><strong>This text is strong.</strong></p>
    <p><i>This text is italic.</i></p>
    <p><em>This text is emphasized.</em></p>
    <p><u>This text is underlined.</u></p>
    <p><s>This text is strikethrough.</s></p>
    <p>H<sub>2</sub>O (subscript)</p>
    <p>X<sup>2</sup> (superscript)</p>
    <p><ins>This text is inserted.</ins></p>
    <p><del>This text is deleted.</del></p>
    <p><small>This text is small.</small></p>
    <p><mark>This text is highlighted.</mark></p>
</body>
</html>
```

Yeh formatting tags text ko different styles aur emphasis dene ke liye use hote hain, jo content ko visually appealing aur readable banate hain.

Comments