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