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