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