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