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