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