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