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