Brief_starWars/planetes.html

38 lines
1.2 KiB
HTML
Raw Normal View History

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 14:19:10 +00:00
<title>Planètes - Star Wars Choubaka</title>
<link rel="stylesheet" href="./css/style.css">
<script src="./scripts/planetes.js" defer></script>
2021-10-19 07:53:50 +00:00
</head>
<body>
2021-10-19 15:38:04 +00:00
<header>
<nav class="navSearch">
<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:40:36 +00:00
<input type="text" id="myInput" onkeyup="myFunction()" placeholder="Search for names.." class="SearchBar">
2021-10-19 15:38:04 +00:00
</header>
2021-10-19 14:19:10 +00:00
<h1>Planètes</h1>
2021-10-19 15:38:04 +00:00
<section class="container" id="container"> <!-- class Css-->
2021-10-19 14:19:10 +00:00
</section>
2021-10-19 15:38:04 +00:00
<div class="boutons"> <!-- class Css-->
2021-10-19 14:19:10 +00:00
<button class="allButtons" name="moins" value="-1"> < </button>
2021-10-19 15:38:04 +00:00
<div id="buttons"></div>
<button class="allButtons" name="plus" value="+1"> > </button>
2021-10-19 14:19:10 +00:00
</div>
2021-10-19 15:38:04 +00:00
<footer></footer>
2021-10-19 07:53:50 +00:00
</body>
</html>