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