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