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