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