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