index.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. <?php
  32. include("include/footer.php")
  33. ?>
  34. <!-- Scripts -->
  35. <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
  36. integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
  37. crossorigin="anonymous"></script>
  38. <script src="include/js/bootstrap.js"></script>
  39. </body>
  40. </html>