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