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