Raster - Image data stored as "pixels."
Vector - Draw shapes with math
Image via tutorialspark.com
webcomic via lbrandy.com
<svg height="210" width="400">
<path d="M150 0 L75 200 L225 200 Z" />
</svg>
TIFF - uncompressed (don't use)
BMP - BitMap - similar to JPG but less efficient
WEBP - Web Picture, great compression but not supported across all browsers (caniuse.com/webp)
Image via http://superuser.com/a/296437a
Adobe Photoshop --> preferred
pixlr.com/editor --> free online editor
Flickr advanced search
http://littlevisuals.co/
http://www.lifeofpix.com/
http://images.superfamous.com/
https://picjumbo.com/
http://www.nypl.org/research/collections/digital-collections/public-domain
http://deathtothestockphoto.com/
https://search.creativecommons.org/
http://www.imcreator.com/free
http://getrefe.tumblr.com/
http://lockandstockphotos.com/
http://snapwiresnaps.tumblr.com/
http://jaymantri.com/
StockSnap, Unfinished Business, Free Nature Stock, Stock Up, Pexels, All The Free Stock, Unsplash, Travel Coffee Book , Splashbase, Startup Stock Photos, Designers Pics, Foodie’s Feed, Jéshoots, Death to the Stock Photo, Pixabay, Picography, Magdeleine, Snapographic, Splitshire, New Old Stock, Picjumbo, Life of Pix, Gratisography, Getrefe, IM Free, ISO Republic, Kaboompics, Function, MMT, Paul Jarvis, Lock & Stock Photos, Raumrot, StockSnap, Free Nature Stock, Mazwai
<img src="images/image.jpg" alt="if image does not display" title="description on hover">
<figure>
<img src="img/album-eno.jpg" alt="Another Green World album cover" title="Another Green World">
<footer>
<!-- copyright typically goes in a small tag in a footer -->
<small class="copyright">© Island Records, 1975</small>
</footer>
<figcaption>
Another Green World by Brian Eno.
Cover art is detail from the Tom Phillips painting
<cite>After Raphael</cite>)
</figcaption>
</figure>
<picture>
<source
media="(min-width: 650px)"
srcset="images/kitten-stretching.png">
<source
media="(min-width: 465px)"
srcset="images/kitten-sitting.png">
<img
src="images/kitten-curled.png"
alt="a cute kitten">
</picture>
body {
background-image: url('img/myimg.png');
background-repeat:repeat;
background-size:50px;
}