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