Advertisement
irfanamir

home.php

Mar 20th, 2020
377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.04 KB | None | 0 0
  1. <html lang="en" dir="ltr">
  2.  
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title></title>
  6.     <link rel="stylesheet" href="css/bootstrap.min.css" type="text/css">
  7.     <script type="text/javascript" src="js/bootstrap.min.js"></script>
  8. </head>
  9.  
  10. <body>
  11.  
  12.     <body background="img\bg-01.jpg" style="background-size: cover">
  13.         <nav class="navbar navbar-expand-lg navbar-purple bg-purple fixed-top">
  14.             <a class="navbar-brand" href="#">
  15.                 <img src="img\profile1.png" alt="logo" style="width: 80px;">
  16.             </a>
  17.             <div class="collapse navbar-collapse" id="navbarColor02">
  18.                 <ul class="navbar-nav mr-auto">
  19.                     <li class="nav-item active">
  20.                         <a class="nav-link" href="#" style="font-weight: bold; color:black">Home</a>
  21.                     </li>
  22.  
  23.                     <li class="nav-item item">
  24.                         <a class="nav-link" href="news.php" style="font-weight: bold; color:black">News</a>
  25.                     </li>
  26.  
  27.                     <li class="nav-item ">
  28.                         <a class="nav-link" href="#about" style="font-weight: bold; color:black">About</a>
  29.                     </li>
  30.  
  31.  
  32.                     <li class="nav-item ">
  33.                         <a class="nav-link" href="#contact" style="font-weight: bold; color:black">Contact</a>
  34.                     </li>
  35.                 </ul>
  36.                 <ul class="navbar-nav navbar-right">
  37.                     <li class="nav-item">
  38.                         <a href="#" class="nav-link" style="font-weight: bold; color:white">User Active :
  39.                             <?php
  40.                             session_start();
  41.                             echo $_COOKIE["username"];
  42.                             ?></a>
  43.                     </li>
  44.                     <li class="nav-item">
  45.                         <a href="index.php" class="nav-link" style="font-weight: bold; color:blue">Logout</a>
  46.                     </li>
  47.                 </ul>
  48.             </div>
  49.         </nav>
  50.     </body>
  51.  
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement