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