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