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