How to Justify Texts on your Website


By default, the text on your website follows the left justified format. But what if you want them all straight up? If you want your paragraph ending in a smooth straight line all the time, here is the code that you’re looking for all along:

First, insert this code between the head tags:

<STYLE TYPE=”text/css”>
</STYLE>

The head tags appears like this on the html page:

<head> </head>

After putting in the code in, you now have to go to each of the paragraphs you want justified. Insert the code class=”just” inside the <p> tag. Here’s how it should appear like:

<p class=”just”> The rest of the paragraph goes here ….. </p>

Make sure to close the paragraph tag with the </p> tag.

And you’re done. Go back and check the paragraphs where the justify code is placed they should be aligned perfectly like you want them.