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