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