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