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