-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path10.icons.html
63 lines (52 loc) · 2.67 KB
/
10.icons.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
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Iconos</title>
<link rel="stylesheet" href="10.icons.css">
<!-- Importamos hoja de estilos de iconos de Fontawesome v6: -->
<link rel="stylesheet" href="all.css">
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Material Icons de Google -->
<!-- https://fonts.google.com/icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
</head>
<body>
<h2>Iconos</h2>
<p>Descargar los archivos de <a href="https://fontawesome.com/download" target="_blank">página de Fontawesome</a>.</p>
<hr>
<h2>SVG</h2>
<p>Etiqueta svg en div:</p>
<div class="svg">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M135.2 117.4L109.1 192H402.9l-26.1-74.6C372.3 104.6 360.2 96 346.6 96H165.4c-13.6 0-25.7 8.6-30.2 21.4zM39.6 196.8L74.8 96.3C88.3 57.8 124.6 32 165.4 32H346.6c40.8 0 77.1 25.8 90.6 64.3l35.2 100.5c23.2 9.6 39.6 32.5 39.6 59.2V400v48c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V400H96v48c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V400 256c0-26.7 16.4-49.6 39.6-59.2zM128 288a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z"/></svg>
</div>
<h2>Iconos Fontawesome</h2>
<i class="fa-solid fa-car" style="font-size: 2em;"></i>
<i class="fa-solid fa-user" style="font-size: 2em;"></i>
<i class="fa-solid fa-house" style="font-size: 2em;"></i>
<h2>Bootstrap Icons</h2>
<i class="glyphicon glyphicon-cloud"></i>
<i class="glyphicon glyphicon-remove"></i>
<i class="glyphicon glyphicon-user"></i>
<i class="glyphicon glyphicon-envelope"></i>
<i class="glyphicon glyphicon-thumbs-up"></i>
<h2>Google Icons</h2>
<i class="material-icons">cloud</i>
<i class="material-icons">favorite</i>
<i class="material-icons">attachment</i>
<i class="material-icons">computer</i>
<i class="material-icons">traffic</i>
<span class="material-symbols-outlined">
attach_money
</span>
<span class="material-symbols-outlined">
currency_pound
</span>
<span class="material-symbols-outlined">
currency_yen
</span>
</body>
</html>