Tutorials

KodeKite Tools

HTML
Flexbox
SVG
Canvas
HTML Tutorial

More


HTML Strong Element
Strong Element

Strong is a formatting element used to make font weight bold. Strong shows same weighted text like bold element <b>. Strong content has more importance.

Syntax

<strong>Content</strong>

Or

<tag><strong>Content</strong></tag>


You can apply strong element to any element and use any where within a HTML document.


Example

I am strong Text


Strong is a pair tag and output of strong element is bold text like you can see in above example.


Practice Task

Open notepad or any other text editor, follow the following points.


  • Define any heading element
  • Make it strong using <strong> element

save file with name task.html or task.htm and then open it using any browser and see results.


Solution

I am strong heading

Don't forget strong is non empty element which means it always comes in pair and it has more importance than Bold Element.