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