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