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