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