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