1<p><img src="image/example.jpg" alt="Example1" width="193" height="130"> (width:193px, height:130px)</p>
2
3<p><img src="image/example.jpg" alt="Example2" width="96" height="65"> (width:96px, height:65px)</p>
4
5<p><img src="image/example.jpg" alt="Example3" width="100%" height="130"> (width:100%, height:130px)</p>
6
1<!DOCTYPE html>
2<html>
3 <head>
4 <title>HTML img Tag</title>
5 </head>
6
7 <body>
8 <img src="/html/images/test.png" alt="Simply Easy Learning" width="200"
9 height="80">
10 </body>
11</html>