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