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