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