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