Skip to main content

Command Palette

Search for a command to run...

Strong tag

Published
1 min readView as Markdown
Strong tag

In HTML, the <strong> tag is used to represent text that should be displayed in bold and that is of importance. The <strong> tag is an inline element, which means that it can be used within a line of text and does not create a new line.

Here is an example of how to use the strong tag in an HTML document

<p>This is a paragraph with <strong>important</strong> text.</p>

Interview-HTML

Part 12 of 18

In this series I will try to answer questions of HTML interviews in most simplest fashion. This will give user the chance of understanding the interview question of HTML in a conceptual manner.

Up next

Center tag

In HTML, the <center> tag is used to center content horizontally within a container element. The <center> tag is a block-level element, which means that it creates a new line and takes up the full width of its parent element. Here is an example of ho...

More from this blog