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