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