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