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