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