Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html lang="en" dir="ltr">
- <head>
- <meta charset="utf-8">
- <title></title>
- <link rel="stylesheet" href="css/bootstrap.min.css" type="text/css">
- <script type="text/javascript" src="js/bootstrap.min.js"></script>
- </head>
- <body>
- <body background="img\bg-01.jpg" style="background-size: cover">
- <nav class="navbar navbar-expand-lg navbar-purple bg-purple fixed-top">
- <a class="navbar-brand" href="#">
- <img src="img\profile1.png" alt="logo" style="width: 80px;">
- </a>
- <div class="collapse navbar-collapse" id="navbarColor02">
- <ul class="navbar-nav mr-auto">
- <li class="nav-item active">
- <a class="nav-link" href="#" style="font-weight: bold; color:black">Home</a>
- </li>
- <li class="nav-item item">
- <a class="nav-link" href="news.php" style="font-weight: bold; color:black">News</a>
- </li>
- <li class="nav-item ">
- <a class="nav-link" href="#about" style="font-weight: bold; color:black">About</a>
- </li>
- <li class="nav-item ">
- <a class="nav-link" href="#contact" style="font-weight: bold; color:black">Contact</a>
- </li>
- </ul>
- <ul class="navbar-nav navbar-right">
- <li class="nav-item">
- <a href="#" class="nav-link" style="font-weight: bold; color:white">User Active :
- <?php
- session_start();
- echo $_COOKIE["username"];
- ?></a>
- </li>
- <li class="nav-item">
- <a href="index.php" class="nav-link" style="font-weight: bold; color:blue">Logout</a>
- </li>
- </ul>
- </div>
- </nav>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement