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