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