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