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