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