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