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