In your html file indent the first line of a paragraph with text-indenting codes.
Write the codes in notepad like below.
<html>
<body>
<p style="text-indent:15px;width:150px;">The first line of this paragraph is indented by 15 pixels. </p>
<p style="text-indent:2.7em;width:150px;">The first line of this paragraph is indented by 2.7 em. </p>
<p style="text-indent:30%;width:150px;">The first line of this paragraph is indented by 30% </p>
<p style="text-indent:-9px;width:2150px;">The first line of this paragraph is indented by a negative amount (-9 pixels). </p>
</body>
</html>
See like image.
See the Html Aligning Test
See the Html Text Decoration
Write the codes in notepad like below.
<html>
<body>
<p style="text-indent:15px;width:150px;">The first line of this paragraph is indented by 15 pixels. </p>
<p style="text-indent:2.7em;width:150px;">The first line of this paragraph is indented by 2.7 em. </p>
<p style="text-indent:30%;width:150px;">The first line of this paragraph is indented by 30% </p>
<p style="text-indent:-9px;width:2150px;">The first line of this paragraph is indented by a negative amount (-9 pixels). </p>
</body>
</html>
See like image.
See the Html Aligning Test
See the Html Text Decoration