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