Advertisement
Guest User

Untitled

a guest
Sep 25th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.53 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Google Login</title>
  6. <style>
  7. body {
  8. margin: 0;
  9. }
  10. .frame{
  11. text-align: center;
  12. }
  13. h1 {
  14. font-family: sans-serif;
  15. font-size: 38px;
  16. font-weight: 100;
  17. color: #555;
  18. }
  19. h2 {
  20. font-family: sans-serif;
  21. font-size: 16px;
  22. font-weight: lighter;
  23. color: #555;
  24. }
  25. .login {
  26. background-color: #f7f7f7;
  27. width: 25%;
  28. height: 300px;
  29. margin: 0 auto;
  30. border: 1px solid #f7f7f7;
  31. border-radius: 9px;
  32. border-bottom: 2px solid gray;
  33. }
  34. #within {
  35. top: 400px;
  36. }
  37. .weiter {
  38. background-color: #3079ed;
  39. border-color: 1px solid #3079ed;
  40. border-radius: 5px;
  41. color: white;
  42. font-size: 12px;
  43. position: relative;
  44. bottom: -60px;
  45. width: 250px;
  46. height: 35px;
  47. }
  48. #Email {
  49. color: white;
  50. font-size: 14px;
  51. width: 244px;
  52. height: 35px;
  53. position: relative;
  54. bottom: 25px;
  55.  
  56. }
  57. #lost {
  58. position: relative;
  59. bottom: -60px;
  60. right: -97px;
  61. font-size: 14px;
  62. text-decoration: none;
  63. }
  64. #konto {
  65. font-size: 14px;
  66. text-decoration: none;
  67. text-align: center;
  68. }
  69. .dienste {
  70. font-family: sans-serif;
  71. font-size: 16px;
  72. font-weight: lighter;
  73. color: #555;
  74. text-align: center
  75. }
  76.  
  77. .footer {
  78. border-top: 1px solid #EDEDED;
  79. width: 100%;
  80. }
  81. .footer ul li {
  82. list-style-type: none;
  83. margin: 20px;
  84. color: #737373;
  85. font-size: 13px;
  86. display: inline;
  87. text-decoration-line: none;
  88. }
  89. .footer2 {
  90. font-size: 15px;
  91. float: right;
  92. position: absolute;
  93. right: 50px;
  94. bottom: -85px;
  95. }
  96. .footer3 {
  97. float: right;
  98. position: absolute;
  99. right: 130px;
  100. bottom: -90px;
  101. }
  102.  
  103. </style>
  104. </head>
  105. <body>
  106. <div class="frame">
  107. <img src="Google_logo_narrow.png">
  108. <h1> Einmal anmelden. Alle Google-Produkte nutzen </h1>
  109. <h2> Mit Ihrem Google-Konto anmelden </h2>
  110. <div class="login" >
  111. <br>
  112. <div id="within" >
  113. <img src="profile.png">
  114. </div>
  115. <button class="weiter">Weiter</button>
  116. <input id="Email" name="Email" placeholder="E-Mail-Adresse eingeben">
  117.  
  118. <div id="lost">
  119. <a href="www.google.com"> Mein Konto finden </a>
  120. </div>
  121. </div>
  122. </div>
  123. <br>
  124. <div id="konto">
  125. <a href="www.google.com"> Konto erstellen </a>
  126. </div>
  127. <br>
  128. <div class="dienste">
  129. <p> Ein Google-Konto für alle Google-Dienste
  130. </p>
  131. <img src="all_icons.png">
  132. </div>
  133. <br>
  134. <br>
  135. <div class="footer">
  136. <ul>
  137. <li><a href="www.google.com">Über Google</a></li>
  138. <li><a href="www.google.com">Datenschutz</a></li>
  139. <li><a href="www.google.com">Nutzungsbedingungen</a></li>
  140. <li><a href="www.google.com">Hilfe</a></li>
  141. </ul>
  142. <div class="footer2">
  143. <select>
  144. <option> Deutsch </option>
  145. <option> English </option>
  146. <option> Italiano </option>
  147. <option> Español </option>
  148. </select>
  149. </div>
  150. <div class="footer3">
  151. <img src="lang.png">
  152. </div>
  153. </div>
  154.  
  155. </body>
  156. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement