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