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