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