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