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