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