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