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