This is a div file

 

 code source

<html>
<head>
<title>hello</title>
<style type="text/css">
#section1{background-color:blue;}
#section2{background-color:red;}
.sec3{background-color:pink;float:left}
</style>
</head>
<body bgcolor="yellow">
<div id="section1">
<h1>This is first page</h1>
<h1>This is first page</h1>
<h1>This is first page</h1>
</div>
<div id="section2">
<h2>This is second page</h2>
<h2>This is second page</h2>
</div>
<div class="sec3">
<p>This is powerfull page of this text</p>
<p>This is powerfull page of this text</p>
<p>This is powerfull page of this text</p>
</div>
</body>
</html>