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