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