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