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