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