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