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