To align text towards left, right or center text-alignment property is used. By default text is aligned left.
<html>
<head>
<style type="text/css">
#p-left{
text-align: left;
}
#p-center{
text-align: center;
}
#p-right{
text-align: right;
}
#p-justify{
text-align: right;
}
</style>
</head>
<body>
<p id="p-left">
Left alignment example
</p>
<p id="p-center">
Center alignment example
</p>
<p id="p-right">
Right alignment example
</p>
<p id="p-justify">
Justified text example
</p>
</body>
</html>