align left in html code example
Example 1: html h1 left align
<h1 style="text-align:center">Titulo 1</h1>
<h2 style="text-align:left">Titulo 2</h2>
<h3 style="text-align:right">Titulo 3</h3>
<h4 style="text-align:justify">Titulo 4</h4>
<p>...</p>
Example 2: html align text left
<p style="text-align: left;"> Left alignment </p>
Example 3: css text align justify
div {
text-align: justify;
text-justify: inter-word;
}
Example 4: how to center text in css
.class {
text-align: center;
}
Example 5: html align right
<p style="text-align:right;">Example</p>