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