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