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