Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. <html>
  2. <head>
  3. <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
  4. <style>
  5. * {
  6. font-family: 'Open Sans', sans-serif;
  7. margin: 0;
  8. padding: 0;
  9. }
  10. img {
  11. width: 200px;
  12. height: 170px;
  13. margin-left: 43%;
  14. margin-top: 50px;
  15. }
  16. h1 {
  17. text-align: center;
  18. margin-top: 100px;
  19. font-size: 2.5em;
  20.  
  21. }
  22. .buttons {
  23. text-align: center;
  24. margin-top: 70px;
  25. }
  26. .buttons a {
  27. padding: 15px;
  28. border: 1px solid #7ec0ee;
  29. border-radius: 15px;
  30. margin: 15px;
  31. text-decoration: none;
  32. }
  33. .buttons a:hover {
  34. background: #7ec0ee;
  35. color: white;
  36. }
  37. .text {
  38. margin-top: 200px;
  39. background: #7ec0ee;
  40. height: 420px;
  41. }
  42. .text h2 {
  43. color: white;
  44. text-align: center;
  45. padding: 40px;
  46. }
  47. .text ul {
  48. text-align: center;
  49. color: white;
  50. list-style-type: circle;
  51. }
  52. .text ul li {
  53. font-size: 1.2em;
  54. }
  55. .text p {
  56. text-align: center;
  57. color: white;
  58. font-size: 1.7em;
  59. padding: 15px;
  60.  
  61. }
  62.  
  63. footer {
  64. height: 70px;
  65. }
  66. footer p {
  67. text-align: center;
  68. margin-top: 35px;
  69. font-size: 1.3em;
  70. }
  71.  
  72. </style>
  73.  
  74.  
  75. </head>
  76. <body>
  77. <form action="log.php" method="POST"></form>
  78.  
  79. <div class="top">
  80. <img src="logo.jpg" alt="logo">
  81. <h1>Find your way home.</h1>
  82.  
  83. <div class= "buttons">
  84. <a href="register.php">Register</a>
  85. <a href="login.php">Log in</a>
  86. </div>
  87. </div>
  88.  
  89. <div class="text">
  90. <h2>What we offer: </h2>
  91. <ul>
  92. <li>Rent</li>
  93. <li>Sell</li>
  94. <li>Buy</li>
  95. </ul>
  96. <p>The best properties from all around Europe.</p>
  97.  
  98.  
  99. </div>
  100. <footer>
  101. <p> &copy; Armin Imamovic 2019. </p>
  102. </footer>
  103. </body>
  104.  
  105.  
  106.  
  107. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement