-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 753 Bytes
/
index.html
File metadata and controls
20 lines (20 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<title>Looking_4_Movie</title>
</head>
<body>
<div class="movies">
<input type="text" id="searchInput" id="myInput" onkeydown="executeEntree(event)" placeholder="Entrez le nom du film recherché">
<button class="btn" type="button" onclick="filmSearch()" title="Rechecher">Rechercher</button>
</div>
<section class="films">
<div id="filmList"></div>
</section>
</body>
</html>