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