An example of using the division tags.Code:<html> <head> <title>Example</title> <style type="text/css"> .leftad{ position: absolute; left: 0px; top: 0px; width: 100px; height: 300px; } .rightad{ position: absolute; left: 200px; top: 0px; width: 100px; height: 300px; } </style> </head> <body> <!--previous code--> <!--end previous code--> < div class="leftad"> <!--whatever you want here--> </div> <div class="rightad"> <!--whatever you want here--> </div> </body> </html>




Reply With Quote