The following code shows how to glyphicon-search, user, and trash icons.
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css"
href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0-rc2/css/bootstrap-glyphicons.css">
<style type='text/css'>
.blue {<!--from www .ja va 2 s .c o m-->
color: blue;
}
</style>
</head>
<body>
<span class="glyphicon glyphicon-search"></span>
<span class="glyphicon glyphicon-user blue"></span>
<span class="glyphicon glyphicon-trash"></span>
</body>
</html>