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