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