set the width="100%" -- the display will 'fill' the window and flow to show all data
no matter how the user resizes the window. In the example below,
a single table is used with one row and one cell (where the width is located).
In that cell you can put Any other normal html. I highly recommend you use CSS
for all other formatting controls.
Code:
<html><head></head>
<body>
<table border="0">
<tr>
<td width="100%">
<p>MILAN, Italy (AP) — Italian composer Giorgio Battistelli says he believes operatic treatment of Al Gore's "An Inconvenient Truth" will help people see the world's environmental predicament from a fresh point of view.
<p>"Opera makes you reflect," he said in a phone interview Friday. He is working on an opera based on Gore's book and film about climate change.
<p>Artists in general "make you see things differently, make you see things in a new light. When we see a painting by Francis Bacon or a film of Sydney Pollack, we get a very precise idea of the problems of our century," Battistelli said.
<p>He began work on the opera a year ago, and the Milan opera house La Scala plans to present it during the 2011 season as part of celebrations for the 150th anniversary of Italy's unification in 1861.
</td>
</tr>
</table>
</body>
</html>
copy/paste this into Notepad and save as Sample.html which you can then open
in your browser to see the effect of resizing.
Best wishes