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