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