what is the <em> tag in html
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.
<!Doctype html>
- <!doctype html> always be the first line of any HTML document.
Step 2 ]
<html> and </html>
html is the root element.
<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
<body> and </body>
body is main content area.
All visible content inside to the <body> tagStep 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>

No comments:
Post a Comment