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