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