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