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