-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (43 loc) · 1.53 KB
/
index.html
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!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">
<title>Document</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/script.js"></script>
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="header">
<div class="logo">FontIcons</div>
</div>
<div class="search">
<label for="type">Filtra per tipo</label>
<select name="type" id="type">
<option value="">All</option>
</select>
</div>
</header>
<main>
<div class="container">
<div class="icons">
<!-- example -->
<!-- <div>
<i class="fas fa-cat" style="color:blue"></i>
<div class="title">CAT</div>
</div> -->
</div>
</div>
</main>
</body>
</html>
<!-- Milestone 1
Partendo dalla seguente struttura dati , mostriamo in pagina tutte le icone disponibili come da layout -->
<!-- Milestone 2
Coloriamo le icone per tipo -->
<!-- Milestone 3
Creiamo una select con i tipi di icone e usiamola per filtrare le icone -->