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