mandalorian/films.html

39 lines
1.1 KiB
HTML
Raw 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>
2021-10-19 20:23:22 +00:00
<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">
<script src="/scripts/films.js" defer type="module"></script>
<title>Films</title>
2021-10-18 13:24:38 +00:00
</head>
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
<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-20 08:37:54 +00:00
<section id="recherche">
2021-10-20 10:42:32 +00:00
<form action="" id="formRecherche" onSubmit="event.preventDefault(); console.log('click')">
2021-10-20 08:37:54 +00:00
<label for="textRecherche">Recherche : </label>
<input type="text" name="textRecherche" id="textRecherche">
<input type="submit" value="ok">
</form>
2021-10-20 08:42:25 +00:00
</section>
2021-10-20 08:07:16 +00:00
<section id="resultats" class="accordeon">
2021-10-20 08:37:54 +00:00
2021-10-20 08:07:16 +00:00
</section>
2021-10-19 20:23:22 +00:00
<div class="image-films"></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>