Use on the webTotal Use [ 3370 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/9262ec129e1437d00efc5de2fa2fb0fd?family=Besley%2A+Condensed+Heavy" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/9262ec129e1437d00efc5de2fa2fb0fd?family=Besley%2A+Condensed+Heavy);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Besley* Condensed Heavy";
src: url("https://db.onlinewebfonts.com/t/9262ec129e1437d00efc5de2fa2fb0fd.eot");
src: url("https://db.onlinewebfonts.com/t/9262ec129e1437d00efc5de2fa2fb0fd.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/9262ec129e1437d00efc5de2fa2fb0fd.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/9262ec129e1437d00efc5de2fa2fb0fd.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/9262ec129e1437d00efc5de2fa2fb0fd.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/9262ec129e1437d00efc5de2fa2fb0fd.svg#Besley* Condensed Heavy")format("svg");
}
2CSS rules to specify fonts
font-family: "Besley* Condensed Heavy";