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