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