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