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