I have a div and I'd like to show some text in Calibri (Body) font within it.
Any ideas on how to achieve this?
Here is the CSS code I've been provided with:
.an_account_join_1 {
float:left;
width:100%;
color:#000000;
font-family:Calibri (Body);
letter-spacing:2px;
font-size:14px;
text-align:center;
margin:20px 0px;
}
This is the specific div in question:
<div class="an_account_join_1">Individual Free Membership</div>
Despite specifying the font family, the designated font style is not being applied.
Upon inspecting the elements using Firebug, there seems to be no CSS rule defining the font family.