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