first of all, i would greatly suggest learning css.
that being said, if you have to use raw html, then say you want to do it with an image;
instead of:
Code:
<img src="#" width="300" height="150" />
do something like this:
Code:
<img src="#" width="24%" height="12%" />
these percentages are relative to the size of the web browser.
edit:
does this code resize the content or just the browser window???
if that code resizes the browser, there are three problems with this solution:
1) most of the time, if a website resizes the browser, most people will not like it and leave the site.
2) that wouldn't work for resolutions smaller than the site.
3) if you minimize the browser, and then reopen it, it goes back to the original size.
if that code resizes content, than you found what i've been looking for for years...