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