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