DEV Community

Cover image for Simple Explanation of Formatting tags
yashghadge77
yashghadge77

Posted on β€’ Edited on

1

Simple Explanation of Formatting tags

1.<b>:
The bold tag in HTML is used to make text bold.
example:

<b>Bold Text</b>
Enter fullscreen mode Exit fullscreen mode

output:Bold Text

2.<strong>:
Indicates strong importance (typically bold). search engine
understand it better.

example:

<strong>Important text</strong>
Enter fullscreen mode Exit fullscreen mode

Output:Important text

3.:
It is used to make text italic.

Example:

<i>This is italic text</i>
Enter fullscreen mode Exit fullscreen mode

Output: This is italic text

4.<em>:
It is used to make text italic but search engine understand better.

Example:

<em>Emphasized text</em>
Enter fullscreen mode Exit fullscreen mode

Output: Emphasized text

5.<del>:
It is used to strike out the text.

Example:

<del>Strikeout text</del>
Enter fullscreen mode Exit fullscreen mode

Output:Strikeout text
**
6.<u>:**
It used to Underline the text.
Example:

<u>Underlined text</u>
Enter fullscreen mode Exit fullscreen mode

Output: Underlined text

7.<ins>:
The <ins> tag in HTML is used to mark inserted text in a document. It is
commonly rendered with an underline to visually indicate that the text
has been added or inserted.
Example:

 <ins>Inserted text</ins>
Enter fullscreen mode Exit fullscreen mode

output: Inserted text

8.<sub>:
It is used write Subscript text.
Example:

 H<sub>2</sub>O
Enter fullscreen mode Exit fullscreen mode

Output: H2O

9.<sup>:
It is used to Write Superscript text.
Example:

x<sup>2</sup>
Enter fullscreen mode Exit fullscreen mode

Output: x2

10.<mark>:
It is used to Highlights text with a yellow background.
Example:

<mark>Highlighted text</mark>
Enter fullscreen mode Exit fullscreen mode

Output: Highlighted text

11.<p>:
It is used Creates a paragraph.
Example:

 <p>This is a paragraph</p>
Enter fullscreen mode Exit fullscreen mode

Output:

This is a paragraph

12.<hr>:
It is used to display horizontal line.

Example:

<hr>
Enter fullscreen mode Exit fullscreen mode

Output:


13.<br>:
It is used to line break.
Example:

Line 1<br>Line 2

Enter fullscreen mode Exit fullscreen mode

Output:
Line 1
Line 2

14.<pre>:
It is used to print text as it is including space.

Example:

<pre>
Line 1
   Line 2
      Line 3
</pre>
Enter fullscreen mode Exit fullscreen mode

Output:

Line 1
   Line 2
      Line 3

15.<KBD>:
The <kbd> tag in HTML is used to represent keyboard input or text that the user should enter via a keyboard.

Example:

<KBD>CTRL+V</KBD>

Enter fullscreen mode Exit fullscreen mode

Output:CTRL+V

Image of AssemblyAI tool

Transforming Interviews into Publishable Stories with AssemblyAI

Insightview is a modern web application that streamlines the interview workflow for journalists. By leveraging AssemblyAI's LeMUR and Universal-2 technology, it transforms raw interview recordings into structured, actionable content, dramatically reducing the time from recording to publication.

Key Features:
πŸŽ₯ Audio/video file upload with real-time preview
πŸ—£οΈ Advanced transcription with speaker identification
⭐ Automatic highlight extraction of key moments
✍️ AI-powered article draft generation
πŸ“€ Export interview's subtitles in VTT format

Read full post

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

πŸ‘‹ Kindness is contagious

Discover a treasure trove of wisdom within this insightful piece, highly respected in the nurturing DEV Community enviroment. Developers, whether novice or expert, are encouraged to participate and add to our shared knowledge basin.

A simple "thank you" can illuminate someone's day. Express your appreciation in the comments section!

On DEV, sharing ideas smoothens our journey and strengthens our community ties. Learn something useful? Offering a quick thanks to the author is deeply appreciated.

Okay