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