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