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