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