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