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