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