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