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