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