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