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