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