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