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