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