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