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