Back to main page

File img.html

<html lang=en>
	<head>
		<title>Image Test Page</title>
	</head>
	<body>
		<p>This is an example page with five bitmaps</p>
		<ul>
			<li> <p>original size</p>
				<img src="testpix.gif">
			<li> <p>width=150</p>
				<img src="testpix.gif" width=150>
			<li> <p>height=150</p>
				<img src="testpix.gif" height=150>
			<li> <p>height=150 width=150</p>
				<img src="testpix.gif" height=150 width=150>
			<li> <p>border</p>
				<img src="testpix.gif">
		</ul>
	</body>
</html>