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