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