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