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