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>
1div.mydiv:after {
2 content: url(image.jpg); /*url of your image*/
3}
4
5or
6
7div.mydiv {
8 width:100px; /*width of your image*/
9 height:100px; /*height of your image*/
10 background-image:url('image.file');
11}