Wie Hinzufügen von Icons
Um ein Symbol einzufügen, fügen Sie den Namen des Symbols Klasse in jedem Inline-HTML-Element.
Die <i>
und <span>
Elemente sind weit verbreitet Symbole.
Alle Symbole in den Symbolbibliotheken unten, sind skalierbare Vektor - Icons , die mit CSS angepasst werden können (size, color, shadow, etc.)
Font Super Icons
Um die Schrift Super - Symbole zu verwenden, fügen Sie die folgende Zeile in den <head>
Abschnitt Ihrer HTML - Seite:
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">
Hinweis: Kein Download oder Installation ist nicht erforderlich!
Beispiel
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet"
href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">
</head>
<body>
<i class="fa fa-cloud"></i>
<i
class="fa fa-heart"></i>
<i class="fa fa-car"></i>
<i class="fa fa-file"></i>
<i class="fa fa-bars"></i>
</body>
</html>
Versuch es selber " Bootstrap Icons
Um die Bootstrap glyphicons zu verwenden, fügen Sie die folgende Zeile innerhalb des <head>
Abschnitt Ihrer HTML - Seite:
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
Hinweis: Kein Download oder Installation ist nicht erforderlich!
Beispiel
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
</head>
<body>
<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>
</body>
</html>
Versuch es selber " Google Icons
Um die Google - Symbole zu verwenden, fügen Sie die folgende Zeile innerhalb des <head>
Abschnitt Ihrer HTML - Seite:
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
Hinweis: Kein Download oder Installation ist nicht erforderlich!
Beispiel
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>
<body>
<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>
</body>
</html>
Versuch es selber " Eine vollständige Liste aller Font Super - Icons, besuchen Sie die Schrift Super Symbol Referenz .
Eine vollständige Liste aller Bootstrap Glyphicons finden Sie auf der Bootstrap Glyphicon Referenz .
Eine vollständige Liste aller Google - Symbole finden Sie auf der Google - Symbol Referenz .