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