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