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