HTML <strong> tag
HTML <strong> tag : Definition
• The The HTML <strong> element is used to emphasis the prase, text, or a word of a document on the browser.
• This element indicates that the word, text or prase inside <strong> element are either importance, seriousness, or has some urgency.
Html <strong> tag example 1:
<!DOCTYPE html> <html> <head> <title>strong Tag example</title> </head> <body> <p>This is a paragraph with no strong <strong> element.</p> <p><strong>This is a paragraph with strong <strong> element.</p> </body> </html>
Output :
This is a paragraph within no strong <strong> element.
This is a paragraph within strong <strong> element.