Advertisement
a6a51

index_vw.blade.php

Jul 26th, 2016
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.42 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>Belajar Laravel</title>
  5.  
  6.         <style>
  7.             html, body {
  8.                 height: 100%;
  9.             }
  10.  
  11.             body {
  12.                 margin: 0;
  13.                 padding: 0;
  14.                 width: 100%;
  15.                 display: table;
  16.                 font-weight: 100;
  17.                 font-family:Arial, Helvetica, sans-serif;
  18.                 color:#999;
  19.             }
  20.  
  21.             .container {
  22.                 text-align: center;
  23.                 display: table-cell;
  24.                 vertical-align: middle;
  25.             }
  26.  
  27.             .content {
  28.                 text-align: center;
  29.                 display: inline-block;
  30.             }
  31.  
  32.             .title {
  33.                 font-size: 96px;
  34.                 /*font-weight:bold;*/
  35.             }
  36.            
  37.             .lungit {
  38.                 font-weight:bold;
  39.                 color:#FF0000;
  40.             }
  41.            
  42.         </style>
  43.     </head>
  44.     <body bgcolor="#000000">
  45.         <div class="container">
  46.             <div class="content">
  47.                 <div class="title">Be nice to me Laravel !</div>
  48.                     <div>===== <font class="lungit">Lungit</font> =====</div>
  49.                     <br><br>
  50.                     <div>THIS IS MAIN PAGE</div><hr><br><br>
  51.                     <table width="100%" border="1" bgcolor="#FF0000"><tr><td>THIS IS CONTENT PAGE</td></tr><tr><td>{{ $konten }}</td></tr></table>
  52.             </div>
  53.         </div>
  54.     </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement