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