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