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