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