最新のWeb開発のチュートリアル
 

Iconsチュートリアル



アイコンを追加する方法

アイコンを挿入するには、任意のインラインHTML要素にアイコンクラスの名前を追加します。

<i><span>要素が広くアイコンを追加するために使用されています。

下のアイコンライブラリのすべてのアイコンは、CSSでカスタマイズすることができ、スケーラブルベクターアイコンです(size, color, shadow, etc.)


フォント恐ろしいアイコン

フォント恐ろしいアイコンを使用するには、内部に次の行を追加します<head> HTMLページのセクション:

<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">

注:いいえダウンロードまたはインストールする必要はありません!

<!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>
»それを自分で試してみてください

ブートストラップのアイコン

ブートストラップglyphiconsを使用するには、内部に以下の行を追加します。 <head> HTMLページのセクション:

<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">

注:いいえダウンロードまたはインストールする必要はありません!

<!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>
»それを自分で試してみてください

Googleのアイコン

Googleのアイコンを使用するには、内部に以下の行を追加します。 <head> HTMLページのセクション:

<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">

注:いいえダウンロードまたはインストールする必要はありません!

<!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>
»それを自分で試してみてください

すべてのフォント恐ろしいアイコンの完全なリストについては、訪問フォント恐ろしいアイコンの参照を

すべてのブートストラップGlyphiconsの完全なリストについては、訪問ブートストラップGlyphicon参照を

すべてのGoogleアイコンの完全なリストについては、訪問のGoogleアイコンの参照を