index.html 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. <li class="nav-item">
  58. <a class="nav-link" href="contact.html">
  59. <img src="https://img.icons8.com/color/48/000000/secured-letter.png" alt="|">
  60. Contact
  61. </a>
  62. </li>
  63. </ul>
  64. </div>
  65. </nav>
  66. <!-- Content -->
  67. <main role="main" class="container">
  68. <div class="focus-center">
  69. <h1>Jovian Hersemeule</h1>
  70. <img src="https://img.icons8.com/color/96/000000/city.png" alt="home flat icon">
  71. <h2>Bienvenue sur mon site internet. :-)</h2>
  72. <p class="lead">Vous trouverez ici les principales informations me concernant : qui je suis, mon parcours, mon
  73. expérience professionnelle et mes projets de programmation.<br>Bonne visite !</p>
  74. </div>
  75. <img class="rounded img-fluid mx-auto d-block" src="images/home_picture_v1.jpg" alt="Photo d'accueil" usemap="#homemap">
  76. <!-- Map image parts to site naviagtion -->
  77. <map name="homemap">
  78. <area shape="rect" coords="120,12,412,306" alt="CV" href="cv.html">
  79. <area shape="rect" coords="494,592,944,880" alt="Projets" href="projects.html">
  80. <area shape="rect" coords="0,564,194,708" alt="Contact" href="contact.html">
  81. </map>
  82. </main>
  83. <!-- Scripts -->
  84. <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
  85. integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
  86. crossorigin="anonymous"></script>
  87. <script src="js/bootstrap.js"></script>
  88. </body>
  89. </html>