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