responsive web color changes

 <!DOCTYPE html>

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
       
        @media screen  and (max-width:1500px) {
            body{background:blue;}
           
        }
       
        @media screen  and (max-width:992px) {
            body{background:green;}
           
        }
        @media  screen  and (max-width:600px) {
            body{background:orange;}
           
        }
       
    </style>
</head>
<body>
   
</body>
</html>

Comments