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