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