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