How to Insert Wingdings in CSS
- 1). Open your CSS file in Notepad.
- 2). Create a new class or ID for the object that will be formatted in Wingdings. Use a class if you will call this parameter more than once. Use an ID if you will only call it once. For example, to create a class called "crazy," type the following:
.crazy { - 3). Specify Wingdings within the "font-family" property of your class or ID. For example, for the class "crazy":
.crazy { font-family: wingdings} - 4). Locate the item you wish to render in Wingdings within your HTML file. Specify that item as an instance of the class or ID to which Wingdings is applied. For example, if the desired element is a "div":
<div>
The text within this "div" will be formatted in Wingdings.
Source...