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