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