-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathparademo.html
36 lines (32 loc) · 1.28 KB
/
parademo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<title> Paragraph alignment </title>
<head>
<style>
p.para1{
text-align: left;
font-size: 50px;
}
p.para2{
text-align: right;
font-size: 50px;
}
p.para3{
text-align: center;
font-size: 50px;
}
</style>
<body>
<h1> My favourite personality </h1>
<p class="para1">My favourite personality is/are my parents. They are kind and always support me.
They take care of my needs and love me unconditionally. They take care of our needs and keep us happy
</p>
<br />
<p class="para2"> They give us important advices which we follow to become succesful un life and also good human being.
They sit and chat and solve our problems. This helps in feeling better nd later we take solution of the problem from them.
</p>
<br />
<p class="para3">They always teach us good manners which helps us becomming a good man in future. Good manners are very essential in life </p>
<br />
</body>
</head>
</html>