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