Set font to icon in HTML and CSS
Description
The following code shows how to set font to icon.
Example
<html>
<head>
<!-- w w w . ja va 2 s . co m-->
<style type='text/css'>
p#icon {
font: icon;
}
</style>
</head>
<body>
<p id='icon'>
This is the icon font.
</p>
</body>
</html>
The code above generates the following result.