Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <!--The Title for the webpage-->
  5. <title>Case 2 - PDF</title>
  6. <meta charset="utf-8" />
  7. <!--Set bootstrap as the stylesheet-->
  8. <link href="lib/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" />
  9. <!--Set the icon for the webpage-->
  10. <link rel="icon" href="data:;base64,iVBORw0KGgo=">
  11. <meta name="viewport" content="width=device-width, initial-scale=1">
  12. </head>
  13. <!--Set the background for the body of the page-->
  14. <body background="/img/wallpaper.jpg">
  15. <!-- start the nav, set the colours and the links-->
  16. <nav class="navbar navbar-expand-md navbar-light bg-secondary">
  17. <a class="navbar-brand" href="#">Case #2</a>
  18. <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarContent">
  19. <span class="navbar-toggler-icon"></span>
  20. </button>
  21. <div class="collapse navbar-collapse" id="navbarContent">
  22. <ul class="navbar-nav mr-auto">
  23. <li class="nav-item">
  24. <a class="nav-link" href="/home.html">Home</a>
  25. </li>
  26. <li class="nav-item">
  27. <a class="nav-link" href="/CRUD.html">Employees</a>
  28. </li>
  29. <li class="nav-item">
  30. <a class="nav-link" href="/Calls.html">Calls</a>
  31. </li>
  32. <li class="nav-item">
  33. <a class="nav-link active" href="/employeepdf.html">Report</a>
  34. </li>
  35. </ul>
  36. </div>
  37. V2.0
  38. </nav>
  39. <!--add an image to the page and center it-->
  40. <div class="text-center list-group-item text-white bg-secondary row d-flex bg-dark" id="lblstatus">status</div>
  41. <p style="text-align:center;"><img src="/img/helpdeski.png" alt="helpdesk"></p>
  42. <input type="button" class="btn btn-secondary" id="callsbutton" value="Calls PDF" />
  43. <input type="button" class="btn btn-secondary" id="employeesbutton" value="Employee PDF" />
  44.  
  45. <!--set some of the script sources for code above-->
  46. <script src="lib/jquery/dist/jquery.min.js"></script>
  47. <script src="lib/bootstrap/dist/js/bootstrap.min.js"></script>
  48. <script src="js/employeepdf.js"></script>
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement