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