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