ad

Saturday, November 8, 2025

what is the em tag in html

 what is the <em> tag in html

https://webdesigningtheory.blogspot.com


what is the <em> tag in html

Explain program 



<!DOCTYPE html>
<html>
 <body>
  <h2> what is the <em> tag in html </h2>
    <p>student learn <em> HTML </em> programming language</p>
    <p> Student learn <em>CSS</em> Programming language</p>
 </body>

</html>

what is the <em> 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 content inside to  the <body> tag

Step 4]

<h2> what is the <em> tag in html </h2>

<h2> tag heading tag. second most important tag.
inside the heading <em> use tag

Step 5]

<p>student learn <em> HTML </em> programming language</p>
    <p> Student learn <em>CSS</em> Programming language</p>

<p>  defines a paragraph. 

inside the paragraph <em> use to highlight  important words.

<em> HTML</em>  :-  HTML appears italicized.
<em>CSS</em>  :- CSS appears italicizes.

Step 6]

</body>

</html>


end body,HTML Document

what is the <em> tag in html 

output 

what is the <em> tag in html


Related Post :-

html italic tag

html table cellpadding attribute

how to create checkbox in html

No comments:

Post a Comment