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