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