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