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