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