Advertisement
1xptolevitico69

HTML CSS change image with CSS Media Queries

Jan 8th, 2022
1,112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.72 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <title>HTML CSS change image with CSS Media Queries</title>
  8.     <style>
  9.  
  10.     .tube {
  11.       position: absolute;
  12.       top: 10px;
  13.       left: 10px;
  14.       background-color: red;
  15.       width: 150px;
  16.       text-align: center;
  17.       color: snow;
  18.       font-family: arial black;
  19.       padding: 5px 20px;
  20.     }
  21.  
  22. </style>
  23. </head>
  24. <body>
  25.  
  26.  
  27.        <a class='tube'  href='https://codepen.io/manuel-andrade/pen/poWZGYW'>See it on CodePen</a>
  28.  
  29.  
  30.   <script></script>
  31. </body>
  32. </html>
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement