forked from simplonco/js-basic-list
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
27 lines (25 loc) · 756 Bytes
/
main.html
File metadata and controls
27 lines (25 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="master.css">
</head>
<body>
<div class="container">
<div class="checkbox">
<div class="">
<label for="JS">Javascript</label><input class="js" type="checkbox" checked name="JS" value="JS">
</div>
<div class="">
<label for="CSS">CSS</label><input class="css" type="checkbox" checked name="CSS" value="CSS">
</div>
<button type="button" name="button" class="filterbtn">Filtrer</button>
</div>
<ul class="booksList">
<ul class="main nothing"><li>Désolé mais votre recherche n'a rien donné...</li></ul>
</ul>
</div>
<script src="main.js"></script>
</body>
</html>