Advertisement
ekiakmarullah

Belajar CSS Dua

Mar 20th, 2019
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.40 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Belajar CSS Bagian Pertama</title>
  5.     <style type="text/css">
  6.         body {
  7.             margin: 0;
  8.             padding: 0;
  9.             overflow-y: hidden;
  10.         }
  11.  
  12.         .wrapper {
  13.             width: 80%;
  14.             margin: 0 auto;
  15.         }
  16.  
  17.         header {
  18.             margin-top: 50px;
  19.             border-bottom: 3px solid #555753FF;
  20.         }
  21.  
  22.         nav {
  23.             line-height: 50px;
  24.             padding: 10px;
  25.         }
  26.  
  27.         a {
  28.             text-decoration: none;
  29.         }
  30.  
  31.         .link {
  32.             float: right;
  33.             margin-left: 50px;
  34.             font-family: 'Arial';
  35.             color: #222;
  36.         }
  37.  
  38.         h4 {
  39.             display: inline;
  40.             font-family: 'Helvetica';
  41.             color: #222;
  42.             font-size: 35px;
  43.         }
  44.  
  45.         section {
  46.             margin-top: 20px;
  47.             width: 100%;
  48.             height: 300px;
  49.         }
  50.  
  51.         .container {
  52.             background-color: #F3F3F3FF;
  53.             padding: 10px;
  54.             height: 100%;
  55.         }
  56.  
  57.         h3 {
  58.             font-family: 'Helvetica';
  59.             color: #2E3436FF;
  60.             font-size: 25px;
  61.             text-align: center;
  62.         }
  63.  
  64.         input {
  65.             background-color: #3465A4FF;
  66.             color: #FFF;
  67.             font-family: 'Arial';
  68.             text-align: center;
  69.             border:none;
  70.             border-radius: 2px;
  71.             padding: 10px 20px;
  72.             margin: 0 auto;
  73.             display: block;
  74.         }
  75.  
  76.         p {
  77.             font-family: 'Arial';
  78.             text-align: center;
  79.             padding-top: 10px;
  80.         }
  81.  
  82.         footer {
  83.             margin-top: 50px;
  84.             background-color: #F3F3F3FF;
  85.             height: 20vh;
  86.             padding: 10px;
  87.             font-family: 'Helvetica';
  88.             line-height: 20vh;
  89.             text-align: center;
  90.         }
  91.  
  92.     </style>
  93. </head>
  94. <body>
  95.     <div class="wrapper">
  96.         <header>
  97.             <nav>
  98.                 <a href="">
  99.                     <h4>LOGO</h4>
  100.                 </a>
  101.                 <a href="" class="link">
  102.                     HOME
  103.                 </a>
  104.                 <a href="" class="link">
  105.                     ABOUT
  106.                 </a>
  107.                 <a href="" class="link">
  108.                     CONTACT
  109.                 </a>
  110.             </nav>
  111.         </header>
  112.  
  113.         <section>
  114.             <div class="container">
  115.                 <h3>Selamat Datang Di Website Saya</h3>
  116.                 <input type="submit" name="submit" value="BUTTON">
  117.                 <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Doloribus quasi atque, nihil blanditiis <br/><br/>eveniet laboriosam tenetur odio maiores, quam tempore ex veritatis exercitationem optio officiis rem <br/><br/>possimus adipisci minus recusandae impedit eligendi amet. Quam at dolores voluptas ipsam, quia voluptate <br/><br/>officia, perspiciatis consectetur dolore perferendis reiciendis dignissimos, expedita, rerum laudantium.<br/><br/></p>
  118.             </div>
  119.         </section>
  120.         <br/>
  121.         <footer>
  122.             Copyright &copy; 2019 - @YourCompany.com, All right reserved.
  123.         </footer>
  124.     </div>
  125. </body>
  126. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement