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