| <html> <head> <title>(Type a title for your page here)</title> <style> div { position: absolute; top: 20%; left: 20%; width: 60%; height: 60%; background-color: rgb(0,255,0); } </style> </head> <body bgcolor="#ffffff" text="#000000" link="#808040" vlink="#008040" alink="#008000"> <div> The div section is placed 20% down, and 20% to the right of the document in the browser window. <br> The width and the height of the div section is 60% of the document in the browser window. <br> If you resize the browser window, the div section will increase or decrease. </div> </body> </html> |