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