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