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