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