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