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