2021-10-19 07:53:50 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<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">
|
2021-10-19 07:56:54 +00:00
|
|
|
<title>Brief Star Wars - People</title>
|
|
|
|
|
2021-10-19 08:01:49 +00:00
|
|
|
<script src="./scripts/people.js" defer></script>
|
2021-10-20 07:41:20 +00:00
|
|
|
<style type="text/css">
|
|
|
|
.details{
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
</style>
|
2021-10-19 07:53:50 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2021-10-19 15:38:55 +00:00
|
|
|
<header>
|
2021-10-19 15:44:53 +00:00
|
|
|
<nav class="navSearch">
|
2021-10-19 15:38:55 +00:00
|
|
|
<ul>
|
|
|
|
<li><a href="index.html">Accueil</a></li>
|
|
|
|
<li><a href="films.html">Films</a></li>
|
|
|
|
<li><a href="people.html">Personnages</a></li>
|
|
|
|
<li><a href="planetes.html">Planètes</a></li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
2021-10-20 07:41:20 +00:00
|
|
|
<input type="text" id="myInput" placeholder="Search for names.." class="SearchBar">
|
2021-10-19 15:38:55 +00:00
|
|
|
</header>
|
2021-10-19 15:44:53 +00:00
|
|
|
|
2021-10-19 07:56:54 +00:00
|
|
|
<section id="container" style="font-size:12px;">
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<div class="boutons">
|
|
|
|
<button class="allButtons" name="moins" value="-1"> < </button>
|
|
|
|
<div id="buttons"></div>
|
|
|
|
<button class="allButtons" name="plus" value="+1"> > </button>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2021-10-19 07:53:50 +00:00
|
|
|
</body>
|
|
|
|
</html>
|