Advertisement
Guest User

master page

a guest
Mar 29th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang = "en">
  3. <head>
  4. <title>Charters</title>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <link rel='stylesheet' type='text/css' href='/public/css/style.css'>
  8.  
  9.  
  10.  
  11. <img src="/public/img/charterlogo.png" alt="Charters" style="width:50px;height:50px;">
  12.  
  13. <ul>
  14.  
  15.  
  16. <li><a href="/about">About Us</a></li>
  17. <li><a href="/news">News</a></li>
  18. <li><a href="/contact">Contact US</a></li>
  19. <li><a href="/faqs">FAQ's</a></li>
  20. <li><a href="/profile">My Profile</a></li>
  21. </ul>
  22. <style>
  23. ul {
  24. list-style-type: none;
  25. margin: 0;
  26. padding: 0;
  27. overflow: hidden;
  28. background-color: #5fcae8;
  29. }
  30.  
  31. li {
  32. float: left;
  33. }
  34.  
  35. li a {
  36. display: block;
  37. color: white;
  38. text-align: center;
  39. padding: 14px 16px;
  40. text-decoration: none;
  41. }
  42.  
  43. /* Change the link color to #111 (black) on hover */
  44. li a:hover {
  45. background-color: #ff8533;
  46. }
  47.  
  48. .active {
  49. background-color: #ff8533;
  50. }
  51. </style>
  52.  
  53. </head>
  54. <body>
  55. <div class = "container">
  56. @yield('content')
  57. </div>
  58.  
  59. <div class="content">
  60.  
  61. </div>
  62.  
  63.  
  64. </body>
  65. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement