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