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