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