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