1<div style="text-align:center">Dieser Text wird zentriert.
2<p>Ebenso dieser Paragraph.</p></div>
3
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 -->
1you just need to add this line of code in your tag(<p>; h1, h2, td etc):
2
3<p align="center">sample text<p/>
1<!-- Code by Scratchy -->
2<!-- Twitter: @S_cratchy-->
3
4<!-- Solution 1 -->
5<p>
6 This is some cool text in html, wow such cool text
7</p>
8
9<!-- Solution 2 -->
10<font style="text-align:right;"> This text is on the right</font>
11<font style="text-align:center;"> This text is in the center</font>
12<font style="text-align:left;"> This text is on the left</font>