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