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