width-height-isvalid.html (316B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset=utf-8> 5 <title>valid width and height</title> 6 </head> 7 <body> 8 <img src="url" width="0" height="0" alt="bar"><!-- img with 0 value for width and height --> 9 <img src="url" width="10" height="10" alt="bar"><!-- img with positive values for width and height --> 10 </body> 11 </html>