-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiconos.html
More file actions
37 lines (32 loc) · 976 Bytes
/
iconos.html
File metadata and controls
37 lines (32 loc) · 976 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
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Ejercicio en materialize</title>
<meta name="viewport" content="width-device-width, initial-scale=1">
<link rel="stylesheet" href="css/materialize.min.css">
</head>
<body>
<div class="container">
<div class="row center">
<h1 class="center purple lighten-4">Iconos</h1>
<!-- Existen 5 tamaños de iconos que son
REM(Root em)
tiny: 1rem - 15px
small: 2rem - 30px
medium:4rem - 60px
large: 6rem - 90px -->
<p>Tamaño tiny</p>
<i class="tiny mdi-device-bluetooth"></i>
<p>Tamaño small</p>
<i class="small mdi-device-bluetooth"></i>
<p>Tamaño medium</p>
<i class="medium mdi-device-bluetooth"></i>
<p>Tamaño large</p>
<i class="large mdi-device-bluetooth"></i>
</div>
</div>
</body>
<script>js/materialize.min.js</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
</html>