index.html 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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>Home - 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 active">
  23. <div class="nav-link">
  24. <img src="https://img.icons8.com/color/48/000000/city.png" alt="|">
  25. Accueil
  26. </div>
  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 dropdown">
  35. <a class="nav-link dropdown-toggle" href="projects.html" 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. <a class="dropdown-item" href="projects.html">Liste des projets</a>
  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. <!-- Content -->
  61. <main role="main" class="container">
  62. <div class="focus-center">
  63. <h1>Jovian Hersemeule</h1>
  64. <img src="https://img.icons8.com/color/96/000000/city.png" alt="home flat icon">
  65. <h2>Bienvenue sur mon site internet. :-)</h2>
  66. <p class="lead">Vous trouverez ici les principales informations me concernant : qui je suis, mon parcours, mon
  67. expérience professionnelle et mes projets de programmation.<br>Bonne visite !</p>
  68. </div>
  69. <img class="rounded img-fluid mx-auto d-block" src="images/home_picture_v1.jpg" alt="Photo d'accueil" usemap="#homemap">
  70. <!-- Map image parts to site naviagtion -->
  71. <map name="homemap">
  72. <area shape="rect" coords="120,12,412,306" alt="CV" href="cv.html">
  73. <area shape="rect" coords="494,592,944,880" alt="Projets" href="projects.html">
  74. </map>
  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>