projects.html 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <!-- Page description -->
  7. <meta name="description" content="The official website of Jovian Hersemeule.">
  8. <meta name="author" content="Jovian Hersemeule">
  9. <!-- Style sheet -->
  10. <link href="css/bootstrap.css" rel="stylesheet">
  11. <link href="css/custom/main.css" rel="stylesheet">
  12. <title>Projets - Jovian Hersemeule</title>
  13. </head>
  14. <body>
  15. <!-- Navbar -->
  16. <nav class="navbar navbar-expand-md navbar-dark bg-success fixed-top">
  17. <a class="navbar-brand" href="index.html">Jovian Hersemeule</a>
  18. <img class="rounded-circle jovian-toggler" type="button" data-toggle="collapse" data-target="#joviaNav" aria-controls="joviaNav"
  19. aria-expanded="false" aria-label="Dérouler le menu" src="https://img.icons8.com/color/48/000000/menu-2.png" alt="V">
  20. <div class="collapse navbar-collapse" id="joviaNav">
  21. <ul class="navbar-nav mr-auto">
  22. <li class="nav-item">
  23. <a class="nav-link" href="index.html">
  24. <img src="https://img.icons8.com/color/48/000000/city.png" alt="|">
  25. Accueil
  26. </a>
  27. </li>
  28. <li class="nav-item">
  29. <a class="nav-link" href="cv.html">
  30. <img src="https://img.icons8.com/color/48/000000/parse-from-clipboard.png" alt="|">
  31. CV
  32. </a>
  33. </li>
  34. <li class="nav-item active dropdown">
  35. <a class="nav-link dropdown-toggle" href="#" id="dropdown01" data-toggle="dropdown"
  36. aria-haspopup="true" aria-expanded="false">
  37. <img src="https://img.icons8.com/color/48/000000/code.png" alt="|">
  38. Projets
  39. </a>
  40. <div class="dropdown-menu" aria-labelledby="dropdown01">
  41. <div class="dropdown-item active">Liste des projets</div>
  42. <div class="dropdown-divider"></div>
  43. <a class="dropdown-item" href="projets/pro_static_site.html">
  44. Jovian Website
  45. </a>
  46. <a class="dropdown-item" href="projets/pro_ascii_space.html">
  47. ASCII Space Destroyer
  48. </a>
  49. <a class="dropdown-item" href="projets/pro_pulsar.html">
  50. Pulsar
  51. </a>
  52. <a class="dropdown-item" href="projets/pro_quoridor.html">
  53. Quoridor
  54. </a>
  55. </div>
  56. </li>
  57. </ul>
  58. </div>
  59. </nav>
  60. <!-- Main -->
  61. <main role="main" class="container">
  62. <div class="focus-center">
  63. <h1>
  64. Projets
  65. </h1>
  66. <img src="https://img.icons8.com/color/96/000000/code.png" alt="code flat icon">
  67. <h2>
  68. Tous mes projets de programmation
  69. </h2>
  70. <p class="lead">
  71. Voici l'ensemble des projets de programmation auxquels j'ai participé. Certains ont été faits en équipe,
  72. d'autres seuls, certains sont encore en développement.
  73. </p>
  74. </div>
  75. </main>
  76. <!-- Scripts -->
  77. <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
  78. integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
  79. crossorigin="anonymous"></script>
  80. <script src="js/bootstrap.js"></script>
  81. </body>
  82. </html>