what is the <em> tag in html
What is the Emphasize (em> )tag
HTML <em> tag use emphasize word or sentence in text.
<em> tag use to show emphasized style.
By default browsers display the emphasized text in italic style.
Syntax :-
<em> Text Content</em>
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.
what is the <em> tag in html
output
Related Post :-
Comments
Post a Comment