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