Pages

Tuesday, January 15, 2019

How to Italicized a paragraph

To italicized a paragraph, we will use these tags <i></i>. Any paragraph which we want to italicized, we write in these tags like this <i><p> Need to Italicized </i></p>. We will check here that how we can use italicized tag.
We have to write all paragraph styling in body tag.

<body>
<i><p>This is italicized paragraph</p></i>
</body>


This will show the following result.....


HTML heading and Paragraph

For HTML Heading and paragraph, we have to write all the html heading and paragraph in a body tag.
In <body> Tag we will write like this "<h1>Write heading here</h1>. If we need more bold and bigger size of heading then we can increase the <h(number)>. For example if we need large size of heading, we will write like this <h3></h3>.
For the the paragraph we will like this <p>Some text here...</p>

<html>
<head>
    <title>this is first web page</title>
</head>
<body>
    <h1>First tutorial</h1>
<p>This is paragraph</p>
</body>
</html>

The code will show the following result...

First tutorial

This is paragraph