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