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