<!DOCTYPE html>
<html>
<head>
<title>CSS letter-indent property</title>
<style>
p {
font-family: sans-serif;
font-size: 18px;
padding: 10px;
}
p.one {
text-indent: 35px;
}
p.two {
text-indent: 10%;
}
</style>
</head>
<body>
<p class="one">This paragraph is example of CSS text-indent property and value set 35 pixel. So paragraph first line left side leave blank space end of blank space start a first line paragraph text. This paragraph is example of CSS text-indent property and value set 35 pixel. So paragraph first line left side leave blank space end of blank space start a first line paragraph text.</p>
<br />
<p class="two">This paragraph is example of CSS text-indent property and value set 10 percentage. So paragraph first line left side leave blank space end of blank space start a first line paragraph text. This paragraph is example of CSS text-indent property and value set 10 percentage. So paragraph first line left side leave blank space end of blank space start a first line paragraph text.</p>
</body>
</html>