Posts

Showing posts with the label html <strong> tag

What is the strong Tag in HTML

Image
What is the <strong> Tag in HTML   <strong>  Tag   is semantic html tag indicates the text inside strong importance to enclosed text.   <strong>  Tag   browser and assistive technologies  by default browsers display  <strong> text in bold    What is the <strong> Tag in HTML Example  <! DOCTYPE html > < html > < body > < p > html strong tag </ p >   < p >< strong > Strong text is important </ strong > </ p > </ body > </ html > What is the <strong> Tag in HTML Explain Program Step 1 ] <!Doctype html> <!doctype html>  always be the  first line  of any HTML document. Step 2 ]    <html>  and  </html>    html  is the  root element . Step 3 ] <body>  and  </body> body  is  main content area. All visible c...