HTML Images
<!DOCTYPE html> <html> <body> <picture> <source media="(max-width:600px)" srcset="small.jpg"> <img src="large.jpg" alt="A scene"> </picture> </body> </html>
<!DOCTYPE html> <html> <body> <picture> <source media="(max-width:600px)" srcset="small.jpg"> <img src="large.jpg" alt="A scene"> </picture> </body> </html>