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