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