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