Paragraph Tags

You might also like

Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 13

How to Format

Paragraphs
How to Format Paragraphs
•You can align Paragraphs
by using the <align> tag,
and then by assigning a
style such as left, right or
center.
To align your paragraph… Write the opening
paragraph tag this way:

Left <p align=“left”>

Right <p align=“right”>

Center <p align=“center”>


<!Doctype html>
<html>
<head>
<title> Quality Of A Good Student
</title>
</head> <body>
<h1> The Admirable Quality of a Good Student </h1>
<p align="center"> Most young people believe that all they need to
do in order to be good students is to work hard to earn knowledge
and get the highest scores. As they grow up, they finally realize that
a good student also needs to be an active person in the community
and a well-prepared worker for the future. </p>
</body>
</html>
Adding <br>
tags
Line Breaks
•Adding the <br/> tag
anywhere in the body of
the text places the text
after the tag at the start
of the new line.
<html>
<head>
<title> Quality Of A Good Student
</title>
</head> <body>
<h1> The admirable quality of a Good Student </h1>
<p> Most young people believe that all they need to do in order
to be good students is to work hard to earn knowledge and get
the highest scores.
<br/> As they grow up, they finally realize that a good
student also needs to be an active person in the community
and a well-prepared worker for the future. </p>
</body>
<html>
<head>
<title> Quality Of A Good Student
</title>
</head> <body>
<h1> The admirable quality of a Good Student </h1>
<p> Most young people believe that all they need to do highest
scores. <br/>
In order to be good students is to work hard to earn knowledge and
get the highest scores. <br/>
As they grow up, they finally realize that a good student also needs
to be an active person highest scores. <br/>
In the community and a well-prepared worker for the future. </p>
</body>

You might also like