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