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