<!DOCTYPE html> <html> <body> <div> <!--- outermost block that contains three blocks of content------> <div> <!--- This block is on the left side----> <p> This is a block of content. comment is on the right side and tells about the width and alignment of div element. </p> </div> <div><!--- This block is in the middle ---> <p> This is a second block of content. And comment describes the information about the block.</p> </div> <div><!--- This block is on the right side----> <p> comment is describing about the width and alignment of div element. </p> </div> </div> </body> </html>
Run
×
Share