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