index.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Welcome To Laravel!</title>
  6. <link href="http://fonts.googleapis.com/css?family=Quattrocento&amp;v1" rel="stylesheet" type="text/css" media="all" />
  7. <link href="http://fonts.googleapis.com/css?family=Ubuntu&amp;v1" rel="stylesheet" type="text/css" media="all" />
  8. <link href="http://fonts.googleapis.com/css?family=Lobster+Two&amp;v1" rel="stylesheet" type="text/css" media="all" />
  9. <style type="text/css">
  10. body {
  11. background-color: #eee;
  12. color: #6d6d6d;
  13. font-family: 'Ubuntu';
  14. font-size: 15px;
  15. }
  16. a {
  17. color: #7089b3;
  18. font-weight: bold;
  19. text-decoration: none;
  20. }
  21. h1.laravel {
  22. font-family: 'Lobster Two', Helvetica, serif;
  23. font-size: 60px;
  24. margin: 0 0 15px -10px;
  25. padding: 0;
  26. text-shadow: -1px 1px 1px #fff;
  27. }
  28. h2 {
  29. font-family: 'Quattrocento', serif;
  30. font-size: 30px;
  31. margin: 30px 0 0 0;
  32. padding: 0;
  33. text-shadow: -1px 1px 1px #fff;
  34. }
  35. p {
  36. margin: 10px 0 0 0;
  37. line-height: 25px;
  38. }
  39. #wrapper {
  40. background-color: #fff;
  41. border-radius: 10px;
  42. margin: 0 auto;
  43. padding: 10px;
  44. width: 80%;
  45. }
  46. #wrapper h2:first-of-type {
  47. margin-top: 0;
  48. }
  49. #header {
  50. margin: 0 auto;
  51. margin-bottom: 15px;
  52. margin-top: 20px;
  53. width: 80%;
  54. }
  55. </style>
  56. </head>
  57. <body>
  58. <div id="header">
  59. <h1 class="laravel">Laravel</h1>
  60. </div>
  61. <div id="wrapper">
  62. <h2>Installation Complete!</h2>
  63. <p>Ready to dig in? Start building your application in the <strong>application/routes.php</strong> file.</p>
  64. <p>Need to learn more? Peruse our <a href="http://laravel.com">wonderful documentation</a>.</p>
  65. </div>
  66. </body>
  67. </html>