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