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