<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
/* For device width smaller than 400px: */
body {
background-repeat: no-repeat;
background-image: url('img_smallflower.jpg');
}
/* For device width 400px and larger: */
@media only screen and (min-device-width: 400px) {
body {
background-image: url('img_flowers.jpg');
}
}
</style>
</head>
<body>
</body>
<!-- Mirrored from www.w3schools.com/css/tryit.asp?filename=tryresponsive_image_mediaq2 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 16:50:19 GMT -->
</html>