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