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