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