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