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