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