Yes? It looks fine except that it doesn't adjust for the screen width.
It's weird...the main top image is a completely different size in Firefox and Chrome browsers than it is in MSIE. In MSIE it's about 1700pixels wide. In the others, somewhere around 1200 pixels. Why don't you simply specify the width as a percentage of the screen?
Instead of this:
Code:
<img id="cam1" src="http://datil.net/cam/HCpic.jpg" alt="webcam1" style="width: 1180px; height: 669px; border: solid 2px white;" />
How about
:
Code:
<img id="cam1" src="http://datil.net/cam/HCpic.jpg" alt="webcam1" style="width: 85%; border: solid 2px white;" />
If you only specify width, then the browser will auto adjust height to match.
Anyway, what's your question here???