use block sentence for text on main page

This commit is contained in:
Jonas Leder 2021-01-20 21:43:42 +01:00
parent 06599a881f
commit 0854603421
2 changed files with 12 additions and 1 deletions

View file

@ -16,7 +16,7 @@ getHeader("Jonas Leder", "home");
<div class="center">
<img id="homeImage" src="img/bildHome.webp">
<h2>&Uuml;ber mich</h2>
<p>Hallo, mein Name ist Jonas Leder. Ich bin aktuell Student an der Dualen Hochschule Baden-Württemberg in Mannheim Fachrichtung Angewandte Informatik.</p>
<p class="left block">Hallo, mein Name ist Jonas Leder. Ich bin aktuell Student an der Dualen Hochschule Baden-Württemberg in Mannheim Fachrichtung Angewandte Informatik.</p>
<p><a href="about.php"><button>Mehr</button></a></p>
<div class="spacer"></div>

View file

@ -47,4 +47,15 @@ h1 {
.center{
text-align: center;
}
.left{
text-align: left;
}
.right{
text-align: left;
}
.block{
text-align: justify;
text-justify: auto;
}