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