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