mandalorian/characters.html

43 lines
1.2 KiB
HTML
Raw Permalink Normal View History

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-19 11:09:31 +00:00
<script src="scripts/personnages.js" defer type="module"></script>
2021-10-18 13:24:38 +00:00
<title>Characters</title>
</head>
2021-10-19 20:23:22 +00:00
2021-10-18 13:24:38 +00:00
<body>
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>
2021-10-19 20:23:22 +00:00
2021-10-18 13:58:21 +00:00
</ul>
</nav>
2021-10-19 20:23:22 +00:00
2021-10-18 13:58:21 +00:00
</section>
2021-10-20 08:37:54 +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"></section>
2021-10-20 08:37:54 +00:00
<div class="image-charactere"></div>
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>