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