anasazhar

responsive

Nov 11th, 2020
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></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: 800px) {
  8. h1::before {
  9. content: "Welcome to My Web"
  10. }
  11. }
  12.  
  13. @media (max-width: 799px) {
  14. h1::before {
  15. content: "Welcome!"
  16. }
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <h1></h1>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment