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>
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>
1<html>
2 <head>
3 </head>
4 <body>
5 <img src="exampel.end">
6 </img>
7 </body>
8
9
10 </html>
1PATH
2<img src="img.jpg" >
3<img src="images/img.jpg" >
4<img src="/program/images/img.jpg" >
5
6NAME
7<img src="img.jpg" alt="Name in the site" >
8
9SIZE
10<img src="img.jpg" style="width: 300px; height: 150px" >
11<img src="img.jpg" style="width: 30%; height: 20%" >
12
1<img src="imagelink.com/img/13718623">
2With Size Formatted:
3<img src="imagelink.com/img/13718623" height="100" width="100">