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