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