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