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