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