Use on the webTotal Use [ 4364 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/590e5c7eb4362d7f9370e53ec1ce899e?family=FuturaCndObl-Bo" 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/590e5c7eb4362d7f9370e53ec1ce899e?family=FuturaCndObl-Bo);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "FuturaCndObl-Bo";
src: url("https://db.onlinewebfonts.com/t/590e5c7eb4362d7f9370e53ec1ce899e.eot");
src: url("https://db.onlinewebfonts.com/t/590e5c7eb4362d7f9370e53ec1ce899e.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/590e5c7eb4362d7f9370e53ec1ce899e.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/590e5c7eb4362d7f9370e53ec1ce899e.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/590e5c7eb4362d7f9370e53ec1ce899e.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/590e5c7eb4362d7f9370e53ec1ce899e.svg#FuturaCndObl-Bo")format("svg");
}
2CSS rules to specify fonts
font-family: "FuturaCndObl-Bo";