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