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