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