mandalorian/films.html

31 lines
845 B
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:07:16 +00:00
<section id="resultats" class="accordeon">
</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>