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