2021-10-18 13:24:38 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2021-10-19 20:23:22 +00:00
|
|
|
|
2021-10-18 13:24:38 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel="stylesheet" href="styles/style.css">
|
2021-10-18 15:32:20 +00:00
|
|
|
<script src="scripts/planets.js" type="module" defer></script>
|
2021-10-18 13:24:38 +00:00
|
|
|
<title>Planets</title>
|
|
|
|
</head>
|
2021-10-19 20:23:22 +00:00
|
|
|
|
|
|
|
<body id="planets">
|
2021-10-18 13:58:21 +00:00
|
|
|
<section class="titre"><a href="index.html">STAR WARS</a></section>
|
|
|
|
<section class="sec-menu">
|
|
|
|
<nav class="nav-menu">
|
|
|
|
<ul class="ul-menu">
|
|
|
|
<li id="films"><a href="films.html">Films</a></li>
|
|
|
|
<li id="planets"><a href="planets.html">Planets</a></li>
|
|
|
|
<li id="characters"><a href="characters.html">Characters</a></li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</section>
|
2021-10-18 15:32:20 +00:00
|
|
|
|
2021-10-20 08:17:26 +00:00
|
|
|
<section id="recherche">
|
|
|
|
<form action="" id="formRecherche" onSubmit="event.preventDefault(); console.log('click')">
|
|
|
|
<label for="textRecherche">Recherche : </label>
|
|
|
|
<input type="text" name="textRecherche" id="textRecherche">
|
|
|
|
<input type="submit" value="ok">
|
|
|
|
</form>
|
|
|
|
</section>
|
|
|
|
|
2021-10-19 20:23:22 +00:00
|
|
|
<section id="resultats" class="accordeon">
|
|
|
|
|
2021-10-19 07:47:51 +00:00
|
|
|
</section>
|
|
|
|
|
2021-10-19 20:23:22 +00:00
|
|
|
|
2021-10-18 13:24:38 +00:00
|
|
|
</body>
|
2021-10-19 20:23:22 +00:00
|
|
|
|
2021-10-18 13:24:38 +00:00
|
|
|
</html>
|