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