anasazhar

responsive0

Nov 11th, 2020
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Max Width</title>
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" charset="utf-8">
  6. <style type="text/css">
  7. @media (min-width: 600px) {
  8. body {
  9. background-color: red;
  10. }
  11. }
  12.  
  13. @media (max-width: 599px) {
  14. body {
  15. background-color: blue;
  16. }
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <h1>Welcome to My Web!</h1>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment