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