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