index.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <?php
  4. $title = "Accueil";
  5. include("../include/head.php");
  6. ?>
  7. <body>
  8. <!-- Navbar -->
  9. <?php
  10. include("../include/navbar.php")
  11. ?>
  12. <!-- Content -->
  13. <main role="main" class="container">
  14. <div class="focus-center">
  15. <h1>Jovian Hersemeule</h1>
  16. <img src="https://img.icons8.com/color/96/000000/city.png" alt="Icone principale">
  17. <h2>Bienvenue sur mon site internet. :-)</h2>
  18. <p class="lead">Vous trouverez ici les principales informations me concernant : qui je suis, mon parcours, mon
  19. expérience professionnelle et mes projets de programmation.<br>Bonne visite !</p>
  20. </div>
  21. <img class="rounded img-fluid mx-auto d-block" src="../include/images/home_picture_v1.jpg" alt="Photo d'accueil"
  22. usemap="#homemap">
  23. <!-- Map image parts to site naviagtion -->
  24. <map class="d-none d-sm-block" name="homemap">
  25. <area shape="rect" coords="120,12,412,306" alt="CV" href="cv.php">
  26. <area shape="rect" coords="494,592,944,880" alt="Projets" href="projets.php">
  27. <area shape="rect" coords="0,564,194,708" alt="Contact" href="contact.php">
  28. </map>
  29. </main>
  30. <!-- Footer -->
  31. <footer class="footer bg-dark mt-5">
  32. <div class="container">
  33. <span class="text-muted">Version v2.05 - mise en ligne le 4 aout 2019</span>
  34. </div>
  35. </footer>
  36. <!-- Scripts -->
  37. <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
  38. integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
  39. crossorigin="anonymous"></script>
  40. <script src="../include/js/bootstrap.js"></script>
  41. </body>
  42. </html>