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