Bootstrap Tutorial :: Part 3
In this tutorial we describe how to create icon using twitter bootstrap. Twitter bootstrap icons are provided by Glyphicons
All Glyphicons images are bundled into one. glyphicons-halflings.png resides under img folder of the main bootstrap folder. There are 120 icon classes defined in twitter bootstrap version2.0.
How to use icons in your own site or app ::
Basic syntax to use twitter bootstrap icon
[sourcecode]</pre>
<i class="icon_class_name"></i>
<pre>[/sourcecode]
Where “ icon_class_name” is the name of icon class such as icon-music, icon-star etc. This icon classes are defined in bootstrap.css. Now if you want to use white icon you need to add one extra class “icon-white”.
[sourcecode]</pre>
<i class="icon_class_name icon-white"></i>
<pre>[/sourcecode]
Lets have a look on a full example:
Code ::
[sourcecode]</pre>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>BOOTSTRAP ICON TUTORIAL</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="">
<link href="css/bootstrap.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div>
<div>
<div class="span12">
<form class="well form-search">
<input type="text">
<button type="submit" class="btn"><i></i> Search</button>
</form>
</div>
</div>
</div>
</body>
</html>
<pre>[/sourcecode]
Output ::
Now you can try yourself how to use icons using twitter bootstrap. We think this article will help you to use twitter bootstrap icons. We will discuss more about twitter bootstrap in our next tutorial .
Thank You