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