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