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