<!DOCTYPE html>
<html>
<head>
<title>CSS Example</title>
<style>
body {
color:#000000;
background-color:#ffffff;
font-family:arial, verdana, sans-serif;
font-size:12px;}
.indent {text-indent:30px;}
</style>
</head>
<body>
<h1>text-indent Property</h1>
<p>This paragraph should be aligned with the left-hand margin of the browser window. </p>
<p class="indent">The content of this paragraph should be indented by 30px. The content of this paragraph should be indented by 30px.
The content of this paragraph should be indented by 30px. The content of this paragraph should be indented by 30px.
The content of this paragraph should be indented by 30px. The content of this paragraph should be indented by 30px.
</p>
</body>
</html>