Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Contact Page</title>
  4. <link href='//fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
  5. <style>
  6. body {
  7. margin: 0;
  8. padding: 0;
  9. width: 100%;
  10. height: 100%;
  11. color: #B0BEC5;
  12. display: table;
  13. font-weight: 100;
  14. font-family: 'Lato';
  15. }
  16. .container {
  17. text-align: center;
  18. display: table-cell;
  19. vertical-align: middle;
  20. }
  21. .content {
  22. text-align: center;
  23. display: inline-block;
  24. }
  25. .title {
  26. font-size: 96px;
  27. margin-bottom: 40px;
  28. }
  29. .quote {
  30. font-size: 24px;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <div class="container">
  36. <div class="content">
  37. <div class="title">Contact Page</div>
  38. <div class="quote">Our contact page!</div>
  39. </div>
  40. </div>
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement