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