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