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