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