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