Neueste Web-Entwicklung Tutorials
 

W3.CSS Icons


Icon Bibliotheken

Mit W3.CSS können Sie ein beliebiges Symbol-Bibliothek verwenden, wie:

  • Font Super Icons
  • Google-Material Icons
  • Bootstrap Icons

Mit Icons

Um ein Symbol zu verwenden, fügen Sie einfach den Namen des Symbols an die Klasse eines HTML <i> -Element.

Um die Größe des Symbols zu steuern, ändern Sie die Eigenschaft font-size des Symbols, oder verwenden Sie die w3- Größenklassen:

  • w3-tiny
  • w3-small
  • w3-large
  • w3-xxlarge
  • w3-XXXLarge

Font Super Icons


fa fa-home

fa fa-Bars

fa fa-Pfeil links

fa fa-Pfeil rechts

fa fa-Suche

fa fa-close

fa fa-refresh

fa fa-trash

fa fa-männlich

fa fa-Auto

fa fa-LKW

fa fa-Ebene

Beispiel

<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://www.w3ii.com/lib/w3.css">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">
<body>

<i class="fa fa-cloud"></i>
<i class="fa fa-cloud w3-large"></i>
<i class="fa fa-cloud w3-xlarge"></i>
<i class="fa fa-cloud w3-xxlarge"></i>
<i class="fa fa-cloud w3-xxxlarge"></i>
<i class="fa fa-cloud w3-text-teal" style="font-size:64px"></i>

</body>
</html>
Versuch es selber "

Hinweis Eine vollständige Liste der Symbole: Besuchen Sie unsere Symbol Referenz


Google Material Design-Ikonen

Zuhause
Zuhause
Menü
Menü
arrow_back
arrow_back
arrow_forward
arrow_forward
Suche
Suche
schließen
schließen
erfrischen
erfrischen
löschen
löschen
Person
Person
directions_car
directions_car
local_shipping
local_shipping
local_airport
local_airport

Beispiel

<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://www.w3ii.com/lib/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<body>

<i class="material-icons">cloud</i>
<i class="material-icons w3-large">cloud</i>
<i class="material-icons w3-xlarge">cloud</i>
<i class="material-icons w3-xxlarge">cloud</i>
<i class="material-icons w3-xxxlarge">cloud</i>
<i class="material-icons w3-text-teal" style="font-size:64px">cloud</i>

</body>
</html>
Versuch es selber "

Bootstrap Icons


Zuhause

Menü-Hamburger

arrow_back

arrow_forward


Suche

entfernen

erfrischen

Müll


Benutzer

Datei

drucken

Ebene

Beispiel

<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://www.w3ii.com/lib/w3.css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<body>

<i class="glyphicon glyphicon-cloud"></i>
<i class="glyphicon glyphicon-cloud w3-large"></i>
<i class="glyphicon glyphicon-cloud w3-xlarge"></i>
<i class="glyphicon glyphicon-cloud w3-xxlarge"></i>
<i class="glyphicon glyphicon-cloud w3-xxxlarge"></i>
<i class="glyphicon glyphicon-cloud w3-text-teal" style="font-size:64px"></i>

</body>
</html>
Versuch es selber "