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