Advertisement
1xptolevitico69

Responsive

Sep 26th, 2019
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.71 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang=en>
  3. <head>
  4. <title>Responsive</title>
  5. <meta charset=utf-8>
  6. <meta name="viewport" content="width=device-width">
  7. <style>
  8.  
  9. header {
  10. position:absolute;
  11. width:100%;
  12. }
  13.  
  14. h1 {
  15. font-size:40px;
  16. color:white;
  17. text-align:center;
  18. font-family:courier new;
  19. }
  20.  
  21. #box {
  22. padding:5px;
  23. position:absolute;
  24. top:50%;
  25. left:50%;
  26. transform:translate(-50%,-50%);
  27. width:60%;
  28. height:500px;
  29. border:5px solid red;
  30. }
  31.  
  32. img {
  33. width:100%;
  34. height:100%;
  35. }
  36.  
  37. </style>
  38. </head>
  39. <body>
  40.  
  41. <div id='box'>
  42. <header><h1>Taco with Lime</h1></header>
  43. <img src='https://images.pexels.com/photos/461198/pexels-photo-461198.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940' title='Taco'/>
  44. </div>
  45.  
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement