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