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