123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <!-- Page description -->
- <meta name="description" content="The official website of Jovian Hersemeule.">
- <meta name="author" content="Jovian Hersemeule">
- <!-- Style sheet -->
- <link href="../css/bootstrap.css" rel="stylesheet">
- <link href="../css/custom/main.css" rel="stylesheet">
- <title>Projets - Mon Site - Jovian Hersemeule</title>
- </head>
- <body>
- <!-- Navbar -->
- <nav class="navbar navbar-expand-md navbar-dark bg-success fixed-top">
- <a class="navbar-brand" href="../index.html">Jovian Hersemeule</a>
- <img class="rounded-circle jovian-toggler" type="button" data-toggle="collapse" data-target="#joviaNav"
- aria-controls="joviaNav"
- aria-expanded="false" aria-label="Dérouler le menu" src="https://img.icons8.com/color/48/000000/menu-2.png"
- alt="V">
- <div class="collapse navbar-collapse" id="joviaNav">
- <ul class="navbar-nav mr-auto">
- <li class="nav-item">
- <a class="nav-link" href="../index.html">
- <img src="https://img.icons8.com/color/48/000000/city.png" alt="|">
- Accueil
- </a>
- </li>
- <li class="nav-item">
- <a class="nav-link" href="../cv.html">
- <img src="https://img.icons8.com/color/48/000000/parse-from-clipboard.png" alt="|">
- CV
- </a>
- </li>
- <li class="nav-item active dropdown">
- <a class="nav-link dropdown-toggle" href="#" id="dropdown01" data-toggle="dropdown"
- aria-haspopup="true" aria-expanded="false">
- <img src="https://img.icons8.com/color/48/000000/code.png" alt="|">
- Projets
- </a>
- <div class="dropdown-menu" aria-labelledby="dropdown01">
- <a class="dropdown-item" href="../projects.html">Liste des projets</a>
- <div class="dropdown-divider"></div>
- <a class="dropdown-item" href="pro_static_site.html">Jovian Website</a>
- <div class="dropdown-item active">ASCII Space Destroyer</div>
- <a class="dropdown-item" href="pro_pulsar.html">Pulsar</a>
- <a class="dropdown-item" href="pro_quoridor.html">Quoridor</a>
- </div>
- </li>
- <li class="nav-item">
- <a class="nav-link" href="../contact.html">
- <img src="https://img.icons8.com/color/48/000000/secured-letter.png" alt="|">
- Contact
- </a>
- </li>
- </ul>
- </div>
- </nav>
- <!-- Main -->
- <main role="main" class="container">
- <div class="focus-center">
- <h1>
- ASCII Space Destroyer
- </h1>
- <img class="rounded" src="../images/projets_ascii_ship_torpEL.png" alt="code flat icon">
- <h2>
- Jeu vidéo réalisé en C++
- </h2>
- <p class="lead">
- Derrière ce nom un peu bourrin se cache un shooter à la "Space Invader" où les joueurs peuvent concevoir
- leur propre vaisseau avant de partir à l'aventure.
- </p>
- </div>
- <!-- Content -->
- <h3>
- <img src="https://img.icons8.com/color/48/000000/term.png" alt="V">
- Introduction
- </h3>
- <p>
- Entre mes deux années de prépa, j'ai eu envie de reprendre le C++.
- </p>
- <p>
- J'aime bien le thème de l'espace, ainsi que la possibilité pour le joueur de créer son propre vaisseau.
- </p>
- <p>
- C'est ainsi qu'a débuté le projet ASCII Space Destroyer.
- </p>
- <h3>
- Principe du jeu
- </h3>
- <h3>
- Technologies
- </h3>
- <h3>
- Téléchargement
- </h3>
- <div class="alert alert-info">Mon site web est encore en développement. Cette section sera implémentée dans une
- future version.
- </div>
- </main>
- <!-- 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="../js/bootstrap.js"></script>
- </body>
- </html>
|