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