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