123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!DOCTYPE html>
- <html lang="fr">
- <?php
- $title = "Accueil";
- include("include/head.php");
- ?>
- <body>
- <!-- Navbar -->
- <?php
- include("include/navbar.php")
- ?>
- <!-- Content -->
- <main role="main" class="container">
- <div class="focus-center">
- <h1>Jovian Hersemeule</h1>
- <img src="https://img.icons8.com/color/96/000000/city.png" alt="Icone principale">
- <h2>Bienvenue sur mon site internet. :-)</h2>
- <p class="lead">Vous trouverez ici les principales informations me concernant : qui je suis, mon parcours, mon
- expérience professionnelle et mes projets de programmation.<br>Bonne visite !</p>
- </div>
- <img class="rounded img-fluid mx-auto d-block" src="include/images/home_picture_v1.jpg" alt="Photo d'accueil"
- usemap="#homemap">
- <!-- Map image parts to site naviagtion -->
- <map class="d-none d-sm-block" name="homemap">
- <area shape="rect" coords="120,12,412,306" alt="CV" href="cv.php">
- <area shape="rect" coords="494,592,944,880" alt="Projets" href="projets.php">
- <area shape="rect" coords="0,564,194,708" alt="Contact" href="contact.php">
- </map>
- </main>
- <!-- Footer -->
- <?php
- include("include/footer.php")
- ?>
- <!-- Scripts -->
- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
- integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
- crossorigin="anonymous"></script>
- <script src="include/js/bootstrap.js"></script>
- </body>
- </html>
|