How to Italicize Text in HTML Using the <i> Tag
How to Italicize Text in HTML Using the <i> Tag
Example
<!DOCTYPE html>
<html>
<body>
<h2> Italic text tag </h2>
<p><i> web Designing Theory </i> Aishwarya Jadhav is a passionate MCA postgraduate
teacher who created Web Designing Theory to share knowledge and
support students in learning modern web technologies.
Her teaching style focuses on clarity, structure, and creativity,
making it easier for learners to understand both theory and
practical concepts. this website visit:- webdesigningtheory.blogspot.com/ </p>
</body>
</html>
How to Italicize Text in HTML Using the <i> Tag
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> Italic text tag </h2>
<h2> tag defines a heading .
<h2> tag text ltalic text tag will appear bold and large text.
Step 5]
<P>......</p>
<p> tag defines a paragraph text.
Step 6]
<i> web Designing Theory </i>
<i> tag enclosed text italic tag.
web Designing Theory text appear italic font style
Step 7]
</body> and </html>
</body> close the body section
</html> close the HTML document

No comments:
Post a Comment