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