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