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