Advertisement
Guest User

Untitled

a guest
Aug 27th, 2022
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <div class="wrapper">
  5. <div>
  6. <h1>Title</h1>
  7. <div class="row">
  8. text
  9. <a href="#">link</a>
  10. <a href="#">link</a>
  11. <a href="#">link</a>
  12. </div>
  13. <div class="row">
  14. text
  15. <a href="#">link</a>
  16. <a href="#">link</a>
  17. <a href="#">link</a>
  18. </div>
  19. <div class="row">
  20. text
  21. <a href="#">link</a>
  22. <a href="#">link</a>
  23. <a href="#">link</a>
  24. </div>
  25. <input/>
  26. </div>
  27.  
  28. <img />
  29. </div>
  30.  
  31. <style>
  32. html, body, .wrapper {
  33. height: 100%;
  34. width: 100%;
  35. margin: 0;
  36. }
  37. .wrapper {
  38. display: flex;
  39. align-items: center;
  40. justify-content: center;
  41. gap: 20px;
  42. }
  43. img {
  44. width: 200px;
  45. height: 200px;
  46. background: teal;
  47. }
  48. </style>
  49. </body>
  50. </html>
  51.  
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement