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