Text Alignment
This example is about how you can gives alignment of your website. It’s very easy to use alignment of your paragraph.
<html>
<head>
<style type="text/css">
h1 {text-align:center;}
p.date {text-align:right;}
p.main {text-align:justify;}
</style>
</head>
<body>
<h1>CSS text-align Example</h1>
<p class="date">April, 2010</p>
<p class="main">This subject is about to learn basic function of HTML,CSS and PhP. This subject gives me a lots of idea about infrastructure development of E-systems </p>
<p><b>Note:</b> Try to resize the browser window to see how justify works.</p>
</body>





