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