image example
Example 1: PIL image example
>>> from PIL import Image
>>> im = Image.open("image.jpg")
>>> im.show()
Example 2: how to add image in html
<img src="logo.png" />
Example 3: insert image by css
div.mydiv:after {
content: url(image.jpg); /*url of your image*/
}
or
div.mydiv {
width:100px; /*width of your image*/
height:100px; /*height of your image*/
background-image:url('image.file');
}