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