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