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