1<!-- Code By T64 -->
2
3<!-- Solution -->
4<p style="text-align: left">This text is aligned to the left side of the page</p>
5<p style="text-align: center">This text is aligned to the center of the page</p>
6<p style="text-align: right">This text is aligned to the right side of the page</p>
7
8<!-- Output -->
9This text is aligned to the left side of the page
10
11 This text is aligned to the center of the page
12
13 This text is aligned to the right side of the page
14
15<!-- Website: https://installation.cf -->
1<p style="text-align: left;"> Left alignment </p>
2<p style="text-align: right;"> Right alignment </p>
3<p style="text-align: center;"> Center Align </p>
4<p style="text-align: justify;"> Justify to width </p>
1/* There are four different text align values: left, right, center
2 and justify. For example: */
3text-align: center;