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