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