Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.79 KB | None | 0 0
  1. <!doctype html>
  2.  
  3. <html lang="en">
  4. <head>
  5.   <meta charset="utf-8">
  6.  
  7.   <title>Bettir</title>
  8.   <meta name="description" content="The HTML5 Herald">
  9.   <meta name="author" content="SitePoint">
  10.  
  11.   <style>
  12.      
  13.       body {
  14.           background-color: #ebeeef;
  15.           font-family: Arial;
  16.           color: #333;
  17.       }
  18.      
  19.       .container {
  20.           width: 600px;
  21.           background-color: white;
  22.           margin: 75px auto;
  23.       }
  24.      
  25.       .google {
  26.           max-width: 100%;
  27.       }
  28.      
  29.       .logo {
  30.           padding: 30px;
  31.       }
  32.      
  33.       .content {
  34.           padding: 30px;
  35.           text-align: center;
  36.       }
  37.      
  38.       h1 {
  39.           font-weight: 300;
  40.       }
  41.      
  42.       .content p {
  43.           text-align: left;
  44.           line-height: 1.5;
  45.       }
  46.      
  47.       .button {
  48.           background-color: #3B5998;
  49.           color: white;
  50.           text-decoration: none;
  51.           font-size: 24px;
  52.           padding: 20px 40px;
  53.           border-radius: 10px;
  54.       }
  55.      
  56.       .button-container {
  57.           padding: 30px 0;
  58.       }
  59.      
  60.   </style>
  61.  
  62. </head>
  63.  
  64. <body>
  65.     <div class="container">
  66.         <div class="logo">
  67.             <a href="http://google.com">
  68.                 <img src="http://www.underconsideration.com/brandnew/archives/google_2015_logo_detail.png" alt="Google Logo" class="google">
  69.             </a>
  70.         </div>
  71.         <div class="content">
  72.             <h1>Szeretlek Betti</h1>
  73.             <p>Bacon ipsum dolor amet beef ribs cupim bacon andouille pig flank. Ribeye tail tenderloin, sirloin kielbasa ball tip short loin ham. Tongue tail capicola bresaola, t-bone turkey chicken swine cow. Pastrami pork chop pancetta, fatback meatball porchetta pig filet mignon. Sausage cow doner, hamburger pig boudin jerky fatback spare ribs ribeye pastrami. Cupim meatloaf flank rump pancetta chicken doner spare ribs frankfurter.
  74.  
  75.             </p>
  76.             <div class="button-container">
  77.                 <a href="http://facebook.com" class="button">Facebook</a>
  78.             </div>
  79.         </div>
  80.     </div>
  81. </body>
  82. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement