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