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