Add glyphicon hear icon for heading 1
Description
The following code shows how to add glyphicon hear icon for heading 1.
Example
<!--from w ww.j a va 2 s . c om-->
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</head>
<body style='margin:30px'>
<div class="container">
<h1><span class="glyphicon glyphicon-heart"></span></h1>
</div>
</body>
</html>