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