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